StatisticsInfo.toString which doesn't cause SOE

This commit is contained in:
peter
2013-02-18 15:24:48 +01:00
parent 1e0e8d81f3
commit 6ac8df882d
@@ -84,6 +84,6 @@ public class StatisticsInfo {
}
public String toString() {
return myContext + "::::" + myValue + (myConjuncts.isEmpty() ? "" : "::::" + myConjuncts);
return myContext + "::::" + myValue + (myConjuncts.size() == 1 ? "" : "::::" + myConjuncts);
}
}