Text.java method index changed output format
This commit is contained in:
+6
-2
@@ -144,9 +144,13 @@ public class Text {
|
||||
ArrayList<Integer> values = entry.getValue();
|
||||
String input = "";
|
||||
if (values.get(0) >= 3) {
|
||||
input += key + " ";
|
||||
input += key + " ";
|
||||
for (int i = 1; i < values.size(); i++) {
|
||||
input += values.get(i) + ", ";
|
||||
if(i+1 == values.size()){
|
||||
input += values.get(i)+"";
|
||||
}else {
|
||||
input += values.get(i) + ", ";
|
||||
}
|
||||
}
|
||||
output.add(input);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user