make public

This commit is contained in:
marhali 2023-02-19 13:05:55 +01:00
parent 6c06b41348
commit 9816066046
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ public class ListSection extends ArrayList<Object> implements Section {
addAll(c); addAll(c);
} }
void setParent(Section parent, String name) { public void setParent(Section parent, String name) {
this.parent = parent; this.parent = parent;
this.name = name; this.name = name;
} }

View File

@ -20,7 +20,7 @@ public class MapSection extends HashMap<String, Object> implements Section {
} }
} }
void setParent(Section parent, String name) { public void setParent(Section parent, String name) {
this.parent = parent; this.parent = parent;
this.name = name; this.name = name;
} }