remove protected scope

This commit is contained in:
marhali 2023-02-18 20:22:12 +01:00
parent f028be2c7c
commit 6c06b41348
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);
} }
protected void setParent(Section parent, String name) { 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 {
} }
} }
protected void setParent(Section parent, String name) { void setParent(Section parent, String name) {
this.parent = parent; this.parent = parent;
this.name = name; this.name = name;
} }