Fix the generation of the sign strings.

This commit is contained in:
graywolf336 2014-02-21 09:23:50 -06:00
parent bd7397a929
commit d2a6773522

View File

@ -81,7 +81,7 @@ public class Cell {
if(r.isEmpty()) { if(r.isEmpty()) {
r = s.toString(); r = s.toString();
}else { }else {
r += r + ";" + s.toString(); r += ";" + s.toString();
} }
} }