Skip to content

Commit 032bb62

Browse files
committed
transient or serializable field #57
fix #57 by adding transient to fields
1 parent 31e46cb commit 032bb62

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/io/asfjava/ui/dto/UiForm.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
public class UiForm implements Serializable {
99

10-
private JsonSchema schema;
11-
private ArrayNode form;
10+
private transient JsonSchema schema;
11+
private transient ArrayNode form;
1212

1313
public UiForm(JsonSchema schema, ArrayNode form) {
1414
setSchema(schema);

0 commit comments

Comments
 (0)