mirror of
https://github.com/stleary/JSON-java.git
synced 2026-05-18 00:00:50 -04:00
0521928463
- Moving the CustomClass to data folder. - Removing JSONBuilder.java - Moving the implementation of JSONBuilder to JSONObject.
13 lines
286 B
Java
13 lines
286 B
Java
package org.json.junit.data;
|
|
|
|
import java.util.Map;
|
|
|
|
public class CustomClassI {
|
|
public Map<String, Map<String, Integer>> integerMap;
|
|
|
|
public CustomClassI() {}
|
|
public CustomClassI(Map<String, Map<String, Integer>> integerMap) {
|
|
this.integerMap = integerMap;
|
|
}
|
|
}
|