Removed MICRO SIGN U+00B5 from program source for Windows compatibility

This commit is contained in:
OLEGSHA 2020-12-01 16:53:04 +03:00
parent a588b6c2b5
commit 377241c529

View File

@ -106,8 +106,7 @@ public class Units {
prefixes.put('k', 1e+3f); prefixes.put('k', 1e+3f);
prefixes.put('c', 1e-2f); prefixes.put('c', 1e-2f);
prefixes.put('m', 1e-3f); prefixes.put('m', 1e-3f);
prefixes.put('µ', 1e-6f); // \u00B5 prefixes.put('u', 1e-6f); // not using U+00B5 MICRO SIGN for ease of input
prefixes.put('u', 1e-6f); // for extra compatibility
PREFIXES_BY_CHAR = TCollections.unmodifiableMap(prefixes); PREFIXES_BY_CHAR = TCollections.unmodifiableMap(prefixes);