Removed unnecessary final modifier.

This commit is contained in:
akwizgran
2013-03-11 16:13:20 +00:00
parent 21dfa6be84
commit 46e5cef46c

View File

@@ -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()) {