Typo beginVisition

This commit is contained in:
thatsIch
2014-09-20 22:37:36 +02:00
parent 83299fcf44
commit 8a3739d9bd
3 changed files with 13 additions and 13 deletions
+4 -4
View File
@@ -66,22 +66,22 @@ public class GridConnection implements IGridConnection, IPathItem
if ( a.myGrid == null )
{
GridPropagator gp = new GridPropagator( b.getInternalGrid() );
a.beginVisition( gp );
a.beginVisit( gp );
}
else if ( b.myGrid == null )
{
GridPropagator gp = new GridPropagator( a.getInternalGrid() );
b.beginVisition( gp );
b.beginVisit( gp );
}
else if ( isNetworkABetter( a, b ) )
{
GridPropagator gp = new GridPropagator( a.getInternalGrid() );
b.beginVisition( gp );
b.beginVisit( gp );
}
else
{
GridPropagator gp = new GridPropagator( b.getInternalGrid() );
a.beginVisition( gp );
a.beginVisit( gp );
}
}