Merge branch 'stable-4.5'

* stable-4.5:
  Config: do not add spaces before units

Change-Id: I54185f54e6d78d7aac873ee5f990f09582318857
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
This commit is contained in:
David Pursehouse 2016-10-19 11:45:05 +09:00
commit a963273d85
1 changed files with 3 additions and 3 deletions

View File

@ -835,11 +835,11 @@ public void setLong(final String section, final String subsection,
final String s;
if (value >= GiB && (value % GiB) == 0)
s = String.valueOf(value / GiB) + " g"; //$NON-NLS-1$
s = String.valueOf(value / GiB) + "g"; //$NON-NLS-1$
else if (value >= MiB && (value % MiB) == 0)
s = String.valueOf(value / MiB) + " m"; //$NON-NLS-1$
s = String.valueOf(value / MiB) + "m"; //$NON-NLS-1$
else if (value >= KiB && (value % KiB) == 0)
s = String.valueOf(value / KiB) + " k"; //$NON-NLS-1$
s = String.valueOf(value / KiB) + "k"; //$NON-NLS-1$
else
s = String.valueOf(value);