Add comment for empty test constructor

This commit is contained in:
Yuki Matsuhashi
2026-03-13 01:54:58 +09:00
parent 94e340002b
commit 039f331d7d

View File

@@ -4,5 +4,7 @@ public class CustomClassJ {
public static String classState = "original";
public int number;
public CustomClassJ() {}
public CustomClassJ() {
// Required for JSONObject#fromJson(Class<T>) tests.
}
}