From fffb204cee7be22764813c99ebbebe465d1bc8eb Mon Sep 17 00:00:00 2001 From: Joel Leitch Date: Fri, 9 Oct 2009 18:10:43 +0000 Subject: [PATCH] Removed import for java.util.Map.Entry. --- gson/src/main/java/com/google/gson/JsonObject.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gson/src/main/java/com/google/gson/JsonObject.java b/gson/src/main/java/com/google/gson/JsonObject.java index b33353f0..f9310f13 100644 --- a/gson/src/main/java/com/google/gson/JsonObject.java +++ b/gson/src/main/java/com/google/gson/JsonObject.java @@ -20,7 +20,6 @@ import java.io.IOException; import java.util.LinkedHashMap; import java.util.Map; import java.util.Set; -import java.util.Map.Entry; /** * A class representing an object type in Json. An object consists of name-value pairs where names @@ -136,7 +135,7 @@ public final class JsonObject extends JsonElement { * * @return a set of members of this object. */ - public Set> entrySet() { + public Set> entrySet() { return members.entrySet(); }