Made some more important methods public

This commit is contained in:
Jaime Martinez Rincon 2017-02-19 02:57:07 +01:00
parent 56d18813f4
commit 9e1ed79b2d
2 changed files with 2 additions and 2 deletions

View File

@ -93,7 +93,7 @@ public class SectionManager {
}
public Map<String, ServerSection> getSections() {
return Collections.unmodifiableMap(sectionStorage);
return sectionStorage;
}
public ServerSection getPrincipal() {

View File

@ -273,7 +273,7 @@ public class ServerSection {
return valid;
}
void setValid(boolean valid) {
public void setValid(boolean valid) {
this.valid = valid;
}
}