mirror of
https://github.com/stleary/JSON-java.git
synced 2026-05-24 00:00:53 -04:00
0521928463
- Moving the CustomClass to data folder. - Removing JSONBuilder.java - Moving the implementation of JSONBuilder to JSONObject.
20 lines
409 B
Java
20 lines
409 B
Java
package org.json.junit.data;
|
|
|
|
import java.util.List;
|
|
|
|
public class CustomClassF {
|
|
public List<List<String>> listOfString;
|
|
|
|
public CustomClassF() {}
|
|
public CustomClassF(List<List<String>> listOfString) {
|
|
this.listOfString = listOfString;
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(Object o) {
|
|
CustomClassF classF = (CustomClassF) o;
|
|
return this.listOfString.equals(classF.listOfString);
|
|
}
|
|
}
|
|
|