Zachary Hillman
Results
1
issues of
Zachary Hillman
``` public static void main(String[] args){ Map map = Json.toMap("{\"\":\"Test\"}"); System.out.println(map); for (Map.Entry entry: map.entrySet()) { System.out.println(entry.getKey()); System.out.println(entry.getValue()); } } ``` Output: ``` {"":"Test"} Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String...