Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(974)

Unified Diff: icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/AffixTokenMatcherFactory.java

Issue 347730043: ticket:13634 Full merge of branch to trunk. Base URL: svn+icussh://source.icu-project.org/repos/icu/trunk/
Patch Set: Adding locale long name parsing as alternative to currency data parsing. Test cases are passing ag… Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/AffixTokenMatcherFactory.java
===================================================================
--- icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/AffixTokenMatcherFactory.java (revision 41389)
+++ icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/AffixTokenMatcherFactory.java (working copy)
@@ -16,6 +16,7 @@
public DecimalFormatSymbols symbols;
public IgnorablesMatcher ignorables;
public ULocale locale;
+ public int parseFlags;
public MinusSignMatcher minusSign() {
return MinusSignMatcher.getInstance(symbols, true);
@@ -34,7 +35,7 @@
}
public CombinedCurrencyMatcher currency() {
- return CombinedCurrencyMatcher.getInstance(currency, symbols);
+ return CombinedCurrencyMatcher.getInstance(currency, symbols, parseFlags);
}
public IgnorablesMatcher ignorables() {

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b