mirror of
https://github.com/stleary/JSON-java.git
synced 2026-05-20 00:00:59 -04:00
Use IdentityHashSet for cycle detection
Fixes https://github.com/stleary/JSON-java/issues/650
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
package org.json.junit.data;
|
||||
|
||||
/** test class for verifying if recursively defined bean can be correctly identified */
|
||||
public class RecursiveBeanEquals {
|
||||
private final String name;
|
||||
private Object reference;
|
||||
|
||||
public RecursiveBeanEquals(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public Object getRef() {
|
||||
return reference;
|
||||
}
|
||||
|
||||
public void setRef(Object refObj) {
|
||||
reference = refObj;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object other) {
|
||||
return other instanceof RecursiveBeanEquals && name.equals(((RecursiveBeanEquals) other).name);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return name.hashCode();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user