Skip to content

Commit

Permalink
remove errant printlns.
Browse files Browse the repository at this point in the history
  • Loading branch information
gdusbabek committed Mar 14, 2013
1 parent a6175a8 commit 05681a2
Showing 1 changed file with 0 additions and 6 deletions.
Expand Up @@ -72,9 +72,6 @@ public Event deserialize(JsonElement json, Type typeOfT,
JsonObject payloadJsonObject = jsonObject.get("payload").getAsJsonObject();
Long timestamp = jsonObject.get("timestamp").getAsLong();

System.out.print("===");
System.out.println(eventType);

EventPayload payload = null;

if (eventType.equals("configuration_value.update") ||
Expand All @@ -97,9 +94,6 @@ public Event deserialize(JsonElement json, Type typeOfT,
else {
payload = new ConfigurationValueRemovedEventPayload(configurationId, oldValue);
}

System.out.println(payload);

}
else if (eventType.equals("service.join") || eventType.equals("service.timeout") ||
eventType.equals("service.remove")) {
Expand Down

0 comments on commit 05681a2

Please sign in to comment.