Fixes #1202: Now 10000x items is the limit before being converted to next bigger unit

Added a new method to display a number in a long fashion.
Added respective unit tests for them
This commit is contained in:
thatsIch
2015-04-07 23:46:52 +02:00
parent 2667b8eac6
commit b58c92ebb6
3 changed files with 168 additions and 3 deletions
@@ -129,7 +129,7 @@ public class AppEngRenderItem extends RenderItem
}
else
{
return NUMBER_CONVERTER.toHumanReadableForm( originalSize );
return NUMBER_CONVERTER.toLongHumanReadableForm( originalSize );
}
}
}