Skip to content
This repository was archived by the owner on Sep 19, 2021. It is now read-only.

Commit 5524036

Browse files
committed
Adding missing final statements
This fixes a compile error for Java 7 where final statements were needed for the reload team data call.
1 parent 60ba7ad commit 5524036

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/codeu/chat/RelayMain.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ public static void main(String[] args) {
6363
}
6464
}
6565

66-
private static void startRelay(Server relay, ConnectionSource source, String teamFile) {
66+
private static void startRelay(final Server relay,
67+
final ConnectionSource source,
68+
final String teamFile) {
6769

6870
final ServerFrontEnd frontEnd = new ServerFrontEnd(relay);
6971
LOG.info("Relay front end object created.");

0 commit comments

Comments
 (0)