From: Yoshito Umaoka Date: Tue, 25 Aug 2015 19:37:01 +0000 (+0000) Subject: ICU-11760 Fixed a build error with Java 5 runtime. X-Git-Tag: milestone-59-0-1~977 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=633e6d1d7bb088a38aa8d9cd577b65c0bfd8dd17;p=icu ICU-11760 Fixed a build error with Java 5 runtime. X-SVN-Rev: 37813 --- diff --git a/icu4j/main/classes/core/src/com/ibm/icu/text/NFSubstitution.java b/icu4j/main/classes/core/src/com/ibm/icu/text/NFSubstitution.java index e63aa7fd0a0..bf5d1e8ce37 100644 --- a/icu4j/main/classes/core/src/com/ibm/icu/text/NFSubstitution.java +++ b/icu4j/main/classes/core/src/com/ibm/icu/text/NFSubstitution.java @@ -175,7 +175,7 @@ abstract class NFSubstitution { // if the description was just two paired token characters // (i.e., "<<" or ">>"), it uses the rule set it belongs to to // format its result - if (description.isEmpty()) { + if (description.length() == 0) { this.ruleSet = ruleSet; this.numberFormat = null; }