mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
Removed unnecessary final modifier.
This commit is contained in:
@@ -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()) {
|
||||
|
||||
Reference in New Issue
Block a user