Ignore static fields in JSONObject.fromJson()

This commit is contained in:
Yuki Matsuhashi
2026-03-13 01:23:59 +09:00
parent 6230128f59
commit 94e340002b
3 changed files with 30 additions and 1 deletions
@@ -0,0 +1,8 @@
package org.json.junit.data;
public class CustomClassJ {
public static String classState = "original";
public int number;
public CustomClassJ() {}
}