From 1a9a54dcc25ccf517f38d427c01f696673512348 Mon Sep 17 00:00:00 2001 From: Inderjeet Singh Date: Mon, 4 Apr 2011 21:27:37 +0000 Subject: [PATCH] incorporated review comments from r768 --- gson/src/test/java/com/google/gson/functional/MapTest.java | 1 - 1 file changed, 1 deletion(-) diff --git a/gson/src/test/java/com/google/gson/functional/MapTest.java b/gson/src/test/java/com/google/gson/functional/MapTest.java index ec7b5448..d9b37bb3 100755 --- a/gson/src/test/java/com/google/gson/functional/MapTest.java +++ b/gson/src/test/java/com/google/gson/functional/MapTest.java @@ -157,7 +157,6 @@ public class MapTest extends TestCase { @SuppressWarnings("unchecked") public void testParameterizedMapSubclassDeserialization() { Type type = new TypeToken>() {}.getType(); - Gson gson = new Gson(); String json = "{\"a\":1,\"b\":2}"; MyParameterizedMap map = gson.fromJson(json, type); assertEquals(1, map.get("a").intValue());