]> source.dussan.org Git - gitblit.git/commitdiff
updated comment
authorde4c9d <martin.spielmann@kiongroup.com>
Fri, 30 Dec 2016 17:19:58 +0000 (18:19 +0100)
committerde4c9d <martin.spielmann@kiongroup.com>
Fri, 30 Dec 2016 17:19:58 +0000 (18:19 +0100)
src/main/java/com/gitblit/manager/UserManager.java

index ba0cb35e61b279c92d7c2f1ecf5a58f281b31260..2e68e40dbfe135a5bb2c29d28b034b0e2709dd1d 100644 (file)
@@ -123,7 +123,7 @@ public class UserManager implements IUserManager {
                                        service = createUserService(realmFile);
                                } catch (InstantiationException | IllegalAccessException e1) {
                                         logger.error("failed to instantiate user service {}: {}. Trying once again with IRuntimeManager constructor", realm, e1.getMessage());
-                                       //try once again with file constructor. this adds support for subclasses of ConfigUserService
+                                       //try once again with IRuntimeManager constructor. This adds support for subclasses of ConfigUserService and other custom IUserServices
                                         try {
                                             Constructor<?> constructor = Class.forName(realm).getConstructor(IRuntimeManager.class);
                                             service = (IUserService) constructor.newInstance(runtimeManager);