*) fixed bug where dots were added after numbers < 1000: "123" was transformed to "123." which is undesirable

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@4206 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
low012 18 years ago
parent da73cde86e
commit a4010f7dc8

@ -425,6 +425,7 @@ public class plasmaGrafics {
private static String addDots(String word) {
String tmp = "";
int len = word.length();
if (len > 3) {
while(len > 3) {
if(tmp.equals("")) {
tmp = word.substring(len-3,len);
@ -435,6 +436,7 @@ public class plasmaGrafics {
len = word.length();
}
word = word + "." + tmp;
}
return word;
}

Loading…
Cancel
Save