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:
Matthias Schiffer 2011-05-31 23:57:19 +02:00
parent 996892670d
commit c7a3c9fa4c

View file

@ -263,7 +263,7 @@ public class AIUtil {
return result; return result;
} }
static void incrementStoneCount( private static void incrementStoneCount(
TreeMap<Pair<Integer, StoneColor>, Integer> stones, TreeMap<Pair<Integer, StoneColor>, Integer> stones,
Pair<Integer, StoneColor> stone) { Pair<Integer, StoneColor> stone) {
if (stones.containsKey(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, TreeMap<Pair<Integer, StoneColor>, Integer> stones,
Pair<Integer, StoneColor> stone) { Pair<Integer, StoneColor> stone) {
int count = stones.get(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; int index = stoneColors.indexOf(color) + 1;
if (index >= stoneColors.size()) { if (index >= stoneColors.size()) {
return null; return null;