More visibilty fixes
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@370 72836036-5685-4462-b002-a69064685172
This commit is contained in:
parent
996892670d
commit
c7a3c9fa4c
1 changed files with 3 additions and 3 deletions
|
@ -263,7 +263,7 @@ public class AIUtil {
|
|||
return result;
|
||||
}
|
||||
|
||||
static void incrementStoneCount(
|
||||
private static void incrementStoneCount(
|
||||
TreeMap<Pair<Integer, StoneColor>, Integer> stones,
|
||||
Pair<Integer, StoneColor> stone) {
|
||||
if (stones.containsKey(stone)) {
|
||||
|
@ -273,7 +273,7 @@ public class AIUtil {
|
|||
}
|
||||
}
|
||||
|
||||
static void decrementStoneCount(
|
||||
private static void decrementStoneCount(
|
||||
TreeMap<Pair<Integer, StoneColor>, Integer> stones,
|
||||
Pair<Integer, StoneColor> stone) {
|
||||
int count = stones.get(stone);
|
||||
|
@ -286,7 +286,7 @@ public class AIUtil {
|
|||
}
|
||||
}
|
||||
|
||||
StoneColor getNextColor(StoneColor color) {
|
||||
private StoneColor getNextColor(StoneColor color) {
|
||||
int index = stoneColors.indexOf(color) + 1;
|
||||
if (index >= stoneColors.size()) {
|
||||
return null;
|
||||
|
|
Reference in a new issue