Skip to content
Snippets Groups Projects
Commit 46e5cef4 authored by akwizgran's avatar akwizgran
Browse files

Removed unnecessary final modifier.

parent 21dfa6be
No related branches found
No related tags found
No related merge requests found
......@@ -83,7 +83,7 @@ class ConnectorGroup extends Thread implements InvitationTask {
@Override
public void run() {
// Start the connection threads
final Collection<Connector> connectors = new ArrayList<Connector>();
Collection<Connector> connectors = new ArrayList<Connector>();
// Alice is the party with the smaller invitation code
if(localInvitationCode < remoteInvitationCode) {
for(DuplexPlugin plugin : pluginManager.getInvitationPlugins()) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment