Skip to content

Commit a6ae27a

Browse files
updated comment
1 parent da6a261 commit a6ae27a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/gitblit/manager/UserManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ public UserManager start() {
123123
service = createUserService(realmFile);
124124
} catch (InstantiationException | IllegalAccessException e1) {
125125
logger.error("failed to instantiate user service {}: {}. Trying once again with IRuntimeManager constructor", realm, e1.getMessage());
126-
//try once again with file constructor. this adds support for subclasses of ConfigUserService
126+
//try once again with IRuntimeManager constructor. This adds support for subclasses of ConfigUserService and other custom IUserServices
127127
try {
128128
Constructor<?> constructor = Class.forName(realm).getConstructor(IRuntimeManager.class);
129129
service = (IUserService) constructor.newInstance(runtimeManager);

0 commit comments

Comments
 (0)