use shorter folder names

reduces the risk of too long file names
This commit is contained in:
2017-04-02 11:13:08 +02:00
parent 8ddae957f5
commit cd6b71d35a

View File

@@ -121,7 +121,7 @@ public class Tags {
public String abbreviatedRepresentation() {
final StringBuilder result = new StringBuilder();
final int maxLength = 200;
final int maxLength = 100;
final SortedSet<String> keys = new TreeSet<>(tags.keySet());