samples/singletons/src/org/apidesign/singletons/api/DialogDisplayer.java
changeset 345 f497cf8621b3
parent 343 8e220093e4bf
child 376 bb34a70d36ba
     1.1 --- a/samples/singletons/src/org/apidesign/singletons/api/DialogDisplayer.java	Wed Jan 27 18:30:57 2010 +0100
     1.2 +++ b/samples/singletons/src/org/apidesign/singletons/api/DialogDisplayer.java	Wed Jan 27 20:49:32 2010 +0100
     1.3 @@ -43,7 +43,6 @@
     1.4          
     1.5          // BEGIN: singletons.injectable.serviceloader
     1.6          private static DialogDisplayer initializeServiceLoader() {
     1.7 -            // see http://singletons.apidesign.org
     1.8              Iterator<DialogDisplayer> it = null;
     1.9              it = ServiceLoader.load(DialogDisplayer.class).iterator();
    1.10              return it != null && it.hasNext() ? it.next() : new Impl();