-
Notifications
You must be signed in to change notification settings - Fork 74
Closed
Description
Hi,
while trying to store IPAddresses and IPAddressSeqRanges as Strings in a database using Hibernate, I have found that there is an infinite loop in the toString method in the (decompiled) IPAddressParseData
public String toString() {
StringBuilder builder = new StringBuilder();
builder.append(this.getAddressParseData());
AddressParseData getAddressParseData() {
return this;
}
public StringBuilder append(Object obj) {
return this.append(String.valueOf(obj));
}
public static String valueOf(Object obj) {
return obj == null ? "null" : obj.toString();
}
Kind regards
Metadata
Metadata
Assignees
Labels
No labels