Forbedrer importeringer og scoping

This commit is contained in:
2020-04-07 23:00:36 +02:00
parent c163d7d707
commit 24b8f4812b
7 changed files with 29 additions and 13 deletions

View File

@ -76,7 +76,7 @@ class RoboRallyServerListener extends Listener {
* Gets a map between connections and their player name
* @return A mapping between connections and robot ids
*/
Map<Connection, String> getPlayerNames() {
public Map<Connection, String> getPlayerNames() {
return playerNames;
}
@ -84,7 +84,7 @@ class RoboRallyServerListener extends Listener {
* Gets a map between connections and their robot id
* @return A mapping between connections and robot ids
*/
Map<Connection, RobotID> getRobotID() {
public Map<Connection, RobotID> getRobotID() {
return clients;
}