1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-11-14 21:35:03 -05:00

Don't use Roman Numeral Unicode characters

This commit is contained in:
Reinhard Pointner 2016-11-22 18:49:31 +08:00
parent 894f76d8bc
commit 3f10b3265b

View File

@ -341,7 +341,7 @@ public class ExpressionFormatMethods {
numerals.put(9, "IX"); numerals.put(9, "IX");
numerals.put(5, "V"); numerals.put(5, "V");
numerals.put(4, "IV"); numerals.put(4, "IV");
numerals.put(1, ""); numerals.put(1, "I");
StringBuffer s = new StringBuffer(); StringBuffer s = new StringBuffer();
Matcher m = compile("\\b\\d+\\b").matcher(self); Matcher m = compile("\\b\\d+\\b").matcher(self);