Removed MICRO SIGN U+00B5 from program source for Windows compatibility
This commit is contained in:
parent
a588b6c2b5
commit
377241c529
@ -106,8 +106,7 @@ public class Units {
|
||||
prefixes.put('k', 1e+3f);
|
||||
prefixes.put('c', 1e-2f);
|
||||
prefixes.put('m', 1e-3f);
|
||||
prefixes.put('µ', 1e-6f); // \u00B5
|
||||
prefixes.put('u', 1e-6f); // for extra compatibility
|
||||
prefixes.put('u', 1e-6f); // not using U+00B5 MICRO SIGN for ease of input
|
||||
|
||||
|
||||
PREFIXES_BY_CHAR = TCollections.unmodifiableMap(prefixes);
|
||||
|
Reference in New Issue
Block a user