Skip to content

Commit

Permalink
mis-parsed open registration argument
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Nov 1, 2007
1 parent f0fcd91 commit cfbe758
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -205,7 +205,7 @@ private static void openRegistration(SymmetricEngine engine, String argument) {
+ " takes an argument of {groupId},{externalId}");
}
String nodeGroupId = argument.substring(0, index).trim();
String externalId = argument.substring(index).trim();
String externalId = argument.substring(index + 1).trim();
IRegistrationService registrationService = (IRegistrationService) engine.getApplicationContext().getBean(
Constants.REGISTRATION_SERVICE);
registrationService.openRegistration(nodeGroupId, externalId);
Expand Down

0 comments on commit cfbe758

Please sign in to comment.