mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-17 13:19:52 +01:00
Removed unnecessary final modifier.
This commit is contained in:
@@ -83,7 +83,7 @@ class ConnectorGroup extends Thread implements InvitationTask {
|
|||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
// Start the connection threads
|
// 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
|
// Alice is the party with the smaller invitation code
|
||||||
if(localInvitationCode < remoteInvitationCode) {
|
if(localInvitationCode < remoteInvitationCode) {
|
||||||
for(DuplexPlugin plugin : pluginManager.getInvitationPlugins()) {
|
for(DuplexPlugin plugin : pluginManager.getInvitationPlugins()) {
|
||||||
|
|||||||
Reference in New Issue
Block a user