make a couple of methods private

This commit is contained in:
Eric House 2012-04-23 06:14:02 -07:00
parent a98f9ef12f
commit d5076e2167

View file

@ -347,7 +347,7 @@ public class CurGameInfo {
}
}
public boolean moveUp( int which )
private boolean moveUp( int which )
{
boolean canMove = which > 0 && which < nPlayers;
if ( canMove ) {
@ -358,7 +358,7 @@ public class CurGameInfo {
return canMove;
}
public boolean moveDown( int which )
private boolean moveDown( int which )
{
return moveUp( which + 1 );
}