Skip to content

Commit 9e1ed79

Browse files
committed
Made some more important methods public
1 parent 56d1881 commit 9e1ed79

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/me/jaimemartz/lobbybalancer/section/SectionManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public ServerSection getByServer(ServerInfo server) {
9393
}
9494

9595
public Map<String, ServerSection> getSections() {
96-
return Collections.unmodifiableMap(sectionStorage);
96+
return sectionStorage;
9797
}
9898

9999
public ServerSection getPrincipal() {

src/main/java/me/jaimemartz/lobbybalancer/section/ServerSection.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ public boolean isValid() {
273273
return valid;
274274
}
275275

276-
void setValid(boolean valid) {
276+
public void setValid(boolean valid) {
277277
this.valid = valid;
278278
}
279279
}

0 commit comments

Comments
 (0)