remove protected scope
This commit is contained in:
parent
f028be2c7c
commit
6c06b41348
@ -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;
|
||||||
}
|
}
|
||||||
|
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user