Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Davis2016-08-23 16:55:26 +0000
committerSam Davis2016-08-24 18:43:42 +0000
commit5e84bcb5f7dadf1fc737b6d861686b7e22d7eddd (patch)
tree269032bff09c9a781c18098b80888432b80e5ade /org.eclipse.mylyn.tasks.ui
parent0e804a4b29a5d60e2e1c8f4839f4eff765ce8d83 (diff)
downloadorg.eclipse.mylyn.tasks-5e84bcb5f7dadf1fc737b6d861686b7e22d7eddd.tar.gz
org.eclipse.mylyn.tasks-5e84bcb5f7dadf1fc737b6d861686b7e22d7eddd.tar.xz
org.eclipse.mylyn.tasks-5e84bcb5f7dadf1fc737b6d861686b7e22d7eddd.zip
AttachmentSizeFormatter fails when default locale does not use
Diffstat (limited to 'org.eclipse.mylyn.tasks.ui')
-rw-r--r--org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/AttachmentSizeFormatter.java7
1 files changed, 3 insertions, 4 deletions
diff --git a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/AttachmentSizeFormatter.java b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/AttachmentSizeFormatter.java
index f423136d9..0b72677fc 100644
--- a/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/AttachmentSizeFormatter.java
+++ b/org.eclipse.mylyn.tasks.ui/src/org/eclipse/mylyn/internal/tasks/ui/editors/AttachmentSizeFormatter.java
@@ -12,11 +12,10 @@
package org.eclipse.mylyn.internal.tasks.ui.editors;
+import java.text.DecimalFormat;
+import java.text.NumberFormat;
import java.util.Locale;
-import com.ibm.icu.text.DecimalFormat;
-import com.ibm.icu.text.NumberFormat;
-
/**
* Format attachment size values originally in bytes to nice messages.
* <p>
@@ -35,7 +34,7 @@ import com.ibm.icu.text.NumberFormat;
* <p>
* The size is provided as a String, because it will probably come from a attachment attribute. If the value cannot be
* decoded, for any reason, it returns {@link #UNKNOWN_SIZE}
- *
+ *
* @author Willian Mitsuda
* @author Frank Becker
* @author Steffen Pingel

Back to the top