Author: echatellier
Date: 2009-12-07 19:20:59 +0100 (Mon, 07 Dec 2009)
New Revision: 2706
Modified:
trunk/src/main/java/org/chorem/jtimer/ws/xmlrpc/ChoremXMLRPCClient.java
Log:
Fix empty statement
Modified: trunk/src/main/java/org/chorem/jtimer/ws/xmlrpc/ChoremXMLRPCClient.java
===================================================================
--- trunk/src/main/java/org/chorem/jtimer/ws/xmlrpc/ChoremXMLRPCClient.java 2009-11-25 08:43:35 UTC (rev 2705)
+++ trunk/src/main/java/org/chorem/jtimer/ws/xmlrpc/ChoremXMLRPCClient.java 2009-12-07 18:20:59 UTC (rev 2706)
@@ -919,9 +919,8 @@
.getConnectionInformation(this).getLogin();
if (login != null) {
syncTask(login, task, date, time * 1000);
- } else {
- // login not found so raise no error
}
+ // else login not found so raise no error
} catch (WebServiceException e) {
throw new RuntimeException(e);
}