Sorted Network page content alphabetically for #363

This commit is contained in:
Rsl1122 2017-10-24 12:09:30 +03:00
parent 74f024506b
commit 2d752e481b

View File

@ -385,6 +385,7 @@ public class HtmlStructure {
int i = 0;
StringBuilder b = new StringBuilder();
List<String> values = new ArrayList<>(networkPageContents.values());
Collections.sort(values);
int size = values.size();
int extra = size % 3;
for (int j = 0; j < extra; j++) {