Changed access to use this qualifier

This commit is contained in:
yueh
2014-12-29 15:13:47 +01:00
parent 2a5e57a59b
commit f471513bd0
604 changed files with 11573 additions and 11573 deletions
+6 -6
View File
@@ -34,27 +34,27 @@ public class Connections implements Callable
public boolean destroy = false;
public Connections(PartP2PTunnelME o) {
me = o;
this.me = o;
}
@Override
public Object call() throws Exception
{
me.updateConnections( this );
this.me.updateConnections( this );
return null;
}
public void markDestroy()
{
create = false;
destroy = true;
this.create = false;
this.destroy = true;
}
public void markCreate()
{
create = true;
destroy = false;
this.create = true;
this.destroy = false;
}
}