Skip to content

Commit

Permalink
Fixing a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dulichan committed May 18, 2014
1 parent da32232 commit 441b564
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@
import org.json.simple.JSONObject;
import org.wso2.iot.refarch.rpi.agent.connector.HttpService;

import java.io.FileInputStream;
import java.io.InputStream;
import java.util.Properties;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.TimeUnit;
Expand All @@ -51,7 +48,7 @@ public class Agent {
Init block that creates the http service from a config file
*/
try{
System.out.println("Server ip "+RpiAgentConstants.EMM_AGENT_HOSTNAME + ":9763/mdm/api/notifications/iot"));
System.out.println("Server ip "+RpiAgentConstants.EMM_AGENT_HOSTNAME + ":9763/mdm/api/notifications/iot");
httpService = new HttpService( RpiAgentConstants.EMM_AGENT_HOSTNAME + ":9763/mdm/api/notifications/iot");
}catch(Exception e){
e.printStackTrace();
Expand Down

0 comments on commit 441b564

Please sign in to comment.