Revision: 1766
Author: [email protected]
Date: Mon Nov 30 08:15:21 2009
Log: Fixed the if/else construction on command execution, which caused an
incorrect 'ignored command' message when the command 'addxml' was executed
from the CLI (Fixes issue 256)
http://code.google.com/p/simal/source/detail?r=1766
Modified:
/trunk/uk.ac.osswatch.simal.core/src/main/java/uk/ac/osswatch/simal/Simal.java
=======================================
---
/trunk/uk.ac.osswatch.simal.core/src/main/java/uk/ac/osswatch/simal/Simal.java
Wed Nov 25 15:03:27 2009
+++
/trunk/uk.ac.osswatch.simal.core/src/main/java/uk/ac/osswatch/simal/Simal.java
Mon Nov 30 08:15:21 2009
@@ -188,7 +188,7 @@
System.exit(1);
}
i++;
- } if (cmd.equals("getPeople")) {
+ } else if (cmd.equals("getPeople")) {
try {
getPeople(cl);
} catch (SimalRepositoryException e) {
--
You received this message because you are subscribed to the Google Groups
"Simal Commits" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/simal-commits?hl=en.