mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-26 07:58:52 +01:00
make a couple of methods private
This commit is contained in:
parent
a98f9ef12f
commit
d5076e2167
1 changed files with 2 additions and 2 deletions
|
@ -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 );
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue