Added suport for multiple equal plugin with same interfaces

This commit is contained in:
Ziver Koc 2015-04-19 21:06:01 +00:00
parent ddaac6163a
commit 1455ec57f9
3 changed files with 80 additions and 41 deletions

View file

@ -45,7 +45,7 @@ public class StringUtil {
for(; value > 1024 ;total--) {
value /= 1024;
}
value = (double)( (int)(value*10) )/10;
return value+" "+sizes[total];
}