ErrorProne report, 2026-March-07, 02:51:08 GMT

Summary

ICU_PRIORITY_1

DefaultCharset [FragileCode] (35) • Finally [FragileCode] (3) • InvalidBlockTag (12) • JdkObsolete (410) • MissingFail (24) • MutablePublicArray (34) • ObjectToString (5) • OperatorPrecedence [Style] (54) • ReferenceEquality [FragileCode] (121) • StringSplitter (44) • SynchronizeOnNonFinalField [FragileCode] (21) • UnusedMethod (16) • UnusedVariable (286)

ICU_PRIORITY_2

AlmostJavadoc [Style] (1) • BadImport (22) • ClassCanBeStatic [Style, Performance] (38) • EmptyCatch [Style] (66) • EqualsGetClass [FragileCode] (18) • EqualsUnsafeCast (14) • FallThrough (3) • Finalize (1) • FloatingPointLiteralPrecision [Style] (120) • IncrementInForLoopAndHeader (3) • JavaUtilDate (733) • LabelledBreakTarget (8) • LockOnNonEnclosingClassLiteral (2) • NarrowCalculation (32) • NarrowingCompoundAssignment [FragileCode] (53) • ShortCircuitBoolean [FragileCode] (30) • StaticAssignmentInConstructor (1) • StringCaseLocaleUsage (45) • StringCharset (32) • UndefinedEquals (66) • UnnecessaryStringBuilder (36) • UnsynchronizedOverridesSynchronized [FragileCode] (2)

ERROR

ArrayToString (2) • ComparableType (1) • EqualsHashCode [FragileCode] (8) • IdentityBinaryExpression (1) • MisusedDayOfYear (1) • MisusedWeekYear (3) • ReturnValueIgnored (22) • SelfComparison (1) • SelfEquals (14)

WARNING

AlreadyChecked (2) • ArgumentSelectionDefectChecker (3) • AssertionFailureIgnored [LikelyError] (1) • BadInstanceof [Simplification] (12) • BigDecimalEquals (1) • ByteBufferBackingArray (4) • CatchAndPrintStackTrace (25) • CharacterGetNumericValue (16) • ClassNewInstance [FragileCode] (14) • CollectionUndefinedEquality [FragileCode] (1) • CompareToZero (10) • DateChecker (69) • DoubleCheckedLocking [FragileCode] (1) • EmptyBlockTag (227) • EmptyTopLevelDeclaration (3) • EqualsIncompatibleType (31) • EscapedEntity (2) • ExtendsObject (3) • HidingField (1) • ImmutableEnumChecker (12) • InconsistentCapitalization (39) • InlineMeSuggester (53) • InlineTrivialConstant (2) • IntLongMath [FragileCode] (47) • InvalidInlineTag (591) • InvalidLink (4) • InvalidParam (58) • InvalidThrows (3) • IterableAndIterator [FragileCode] (2) • JavaLangClash [Style] (2) • LongDoubleConversion (10) • LoopOverCharArray (1) • MalformedInlineTag (11) • MissingCasesInEnumSwitch (3) • MissingImplementsComparable (5) • MissingOverride [Style] (470) • MissingSummary (1494) • ModifiedButNotUsed (5) • ModifyCollectionInEnhancedForLoop (2) • NonApiType (40) • NonCanonicalType (7) • NonOverridingEquals [FragileCode] (6) • NotJavadoc (24) • OverrideThrowableToString (1) • ProtectedMembersInFinalClass (8) • ReturnAtTheEndOfVoidFunction (27) • SameNameButDifferent (29) • StaticAssignmentOfThrowable (1) • ThreadJoinLoop (4) • ThreadPriorityCheck (1) • UnnecessaryLongToIntConversion (1) • UnnecessaryParentheses (4074) • UnrecognisedJavadocTag (2)


Detailed report

[ICU_PRIORITY_2] AlmostJavadoc [Style] (1) 🔗

File and line number Message
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/normalizer/IntHashtable.java:[14,0] This comment contains Javadoc or HTML tags, but isn't started with a double asterisk (/**); is it meant to be Javadoc?
Did you mean
/**

[WARNING] AlreadyChecked (2) 🔗

File and line number Message
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1241,53] This condition (on is100Leap) is known to be false here. It (or its complement) has already been checked.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[497,35] This condition (on fmt_arr.length equals 2) is already known to be true; it (or its complement) has already been checked.

[WARNING] ArgumentSelectionDefectChecker (3) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/LocaleDistance.java:[381,35] The following arguments may have been swapped: 'supported' for formal parameter 'desired', 'desired' for formal parameter 'supported'. Either add clarifying `/* paramName= */` comments, or swap the arguments if that is what was intended
Did you mean
isMatch(/* desired= */supported, /* supported= */desired, shiftedThreshold, favorSubtag)) {' or 'isMatch(desired, supported, shiftedThreshold, favorSubtag)) {
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/LocaleDistance.java:[395,35] The following arguments may have been swapped: 'supported' for formal parameter 'desired', 'desired' for formal parameter 'supported'. Either add clarifying `/* paramName= */` comments, or swap the arguments if that is what was intended
Did you mean
isMatch(/* desired= */supported, /* supported= */desired, shiftedThreshold, favorSubtag)) {' or 'isMatch(desired, supported, shiftedThreshold, favorSubtag)) {
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/LocaleDistance.java:[404,35] The following arguments may have been swapped: 'supported' for formal parameter 'desired', 'desired' for formal parameter 'supported'. Either add clarifying `/* paramName= */` comments, or swap the arguments if that is what was intended
Did you mean
isMatch(/* desired= */supported, /* supported= */desired, shiftedThreshold, favorSubtag)) {' or 'isMatch(desired, supported, shiftedThreshold, favorSubtag)) {

[ERROR] ArrayToString (2) 🔗

File and line number Message
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/DataDrivenUScriptTest.java:[302,34] Calling toString on an array does not provide useful information
Did you mean
+ Arrays.toString(code)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/message2/Unit.java:[59,35] Calling toString on an array does not provide useful information
Did you mean
result.add("params=" + Arrays.toString(params));

[WARNING] AssertionFailureIgnored [LikelyError] (1) 🔗

File and line number Message
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/MeasureUnitThreadTest.java:[61,49] This assertion throws an AssertionError if it fails, which will be caught by an enclosing try block.

[ICU_PRIORITY_2] BadImport (22) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/text/LocaleDisplayNames.java:[543,41] Importing nested classes/static methods/static fields with commonly-used names can make code harder to read, because it may not be clear from the context exactly which type is being referred to. Qualifying the name with that of the containing class can make the code clearer. Here we recommend using qualified class: DisplayContext.
Did you mean
public DisplayContext getContext(DisplayContext.Type type) {
icu4j/main/core/src/main/java/com/ibm/icu/impl/LocaleDisplayNamesImpl.java:[649,47] Importing nested classes/static methods/static fields with commonly-used names can make code harder to read, because it may not be clear from the context exactly which type is being referred to. Qualifying the name with that of the containing class can make the code clearer. Here we recommend using qualified class: DisplayContext.
Did you mean
DisplayContext capContext = getContext(DisplayContext.Type.CAPITALIZATION);
icu4j/main/core/src/main/java/com/ibm/icu/impl/TimeZoneNamesFactoryImpl.java:[16,46] Importing nested classes/static methods/static fields with commonly-used names can make code harder to read, because it may not be clear from the context exactly which type is being referred to. Qualifying the name with that of the containing class can make the code clearer. Here we recommend using qualified class: TimeZoneNames.
Did you mean
public class TimeZoneNamesFactoryImpl extends TimeZoneNames.Factory {
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/parse/DecimalMatcher.java:[68,8] Importing nested classes/static methods/static fields with commonly-used names can make code harder to read, because it may not be clear from the context exactly which type is being referred to. Qualifying the name with that of the containing class can make the code clearer. Here we recommend using qualified class: StaticUnicodeSets.
Did you mean
StaticUnicodeSets.Key groupingKey =
icu4j/main/core/src/main/java/com/ibm/icu/text/BreakIteratorFactory.java:[44,42] Importing nested classes/static methods/static fields with commonly-used names can make code harder to read, because it may not be clear from the context exactly which type is being referred to. Qualifying the name with that of the containing class can make the code clearer. Here we recommend using qualified class: ICUService.
Did you mean
return service.unregisterFactory((ICUService.Factory) key);
icu4j/main/core/src/main/java/com/ibm/icu/text/DateIntervalInfo.java:[396,24] Importing nested classes/static methods/static fields with commonly-used names can make code harder to read, because it may not be clear from the context exactly which type is being referred to. Qualifying the name with that of the containing class can make the code clearer. Here we recommend using qualified class: UResource.
Did you mean
public void put(UResource.Key key, Value value, boolean noFallback) {
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormatServiceShim.java:[80,42] Importing nested classes/static methods/static fields with commonly-used names can make code harder to read, because it may not be clear from the context exactly which type is being referred to. Qualifying the name with that of the containing class can make the code clearer. Here we recommend using qualified class: ICUService.
Did you mean
return service.unregisterFactory((ICUService.Factory) registryKey);
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormatServiceShim.java:[54,29] Importing nested classes/static methods/static fields with commonly-used names can make code harder to read, because it may not be clear from the context exactly which type is being referred to. Qualifying the name with that of the containing class can make the code clearer. Here we recommend using qualified class: ICUService.
Did you mean
public Object create(ICUService.Key key, ICUService srvc) {
icu4j/main/core/src/main/java/com/ibm/icu/util/CurrencyServiceShim.java:[58,42] Importing nested classes/static methods/static fields with commonly-used names can make code harder to read, because it may not be clear from the context exactly which type is being referred to. Qualifying the name with that of the containing class can make the code clearer. Here we recommend using qualified class: ICUService.
Did you mean
return service.unregisterFactory((ICUService.Factory) registryKey);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/ModuleTest.java:[45,15] Importing nested classes/static methods/static fields with commonly-used names can make code harder to read, because it may not be clear from the context exactly which type is being referred to. Qualifying the name with that of the containing class can make the code clearer. Here we recommend using qualified class: TestDataModule.
Did you mean
return TestDataModule.Factory.get(baseName, testName);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/ListFormatterTest.java:[251,75] Importing nested classes/static methods/static fields with commonly-used names can make code harder to read, because it may not be clear from the context exactly which type is being referred to. Qualifying the name with that of the containing class can make the code clearer. Here we recommend using qualified class: ListFormatter.
Did you mean
ListFormatter fmt = ListFormatter.getInstance(ULocale.CHINESE, ListFormatter.Type.UNITS, Width.SHORT);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/message2/CustomFunctionListTest.java:[40,16] Importing nested classes/static methods/static fields with commonly-used names can make code harder to read, because it may not be clear from the context exactly which type is being referred to. Qualifying the name with that of the containing class can make the code clearer. Here we recommend using qualified class: ListFormatter.
Did you mean
ListFormatter.Type type =
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/number/ExhaustiveNumberTest.java:[43,20] Importing nested classes/static methods/static fields with commonly-used names can make code harder to read, because it may not be clear from the context exactly which type is being referred to. Qualifying the name with that of the containing class can make the code clearer. Here we recommend using qualified class: StaticUnicodeSets.
Did you mean
get(StaticUnicodeSets.Key.COMMA).containsAll(get(StaticUnicodeSets.Key.STRICT_COMMA)));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/ICUServiceThreadTest.java:[196,12] Importing nested classes/static methods/static fields with commonly-used names can make code harder to read, because it may not be clear from the context exactly which type is being referred to. Qualifying the name with that of the containing class can make the code clearer. Here we recommend using qualified class: ICUService.
Did you mean
ICUService.Factory f = new TestFactory(getCLV());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/LocaleBuilderTest.java:[259,8] Importing nested classes/static methods/static fields with commonly-used names can make code harder to read, because it may not be clear from the context exactly which type is being referred to. Qualifying the name with that of the containing class can make the code clearer. Here we recommend using qualified class: ULocale.
Did you mean
ULocale.Builder bld_st = new ULocale.Builder();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/StaticUnicodeSetsTest.java:[20,13] Importing nested classes/static methods/static fields with commonly-used names can make code harder to read, because it may not be clear from the context exactly which type is being referred to. Qualifying the name with that of the containing class can make the code clearer. Here we recommend using qualified class: StaticUnicodeSets.
Did you mean
for (StaticUnicodeSets.Key key : StaticUnicodeSets.Key.values()) {
icu4j/main/collate/src/main/java/com/ibm/icu/text/CollatorServiceShim.java:[94,42] Importing nested classes/static methods/static fields with commonly-used names can make code harder to read, because it may not be clear from the context exactly which type is being referred to. Qualifying the name with that of the containing class can make the code clearer. Here we recommend using qualified class: ICUService.
Did you mean
return service.unregisterFactory((ICUService.Factory) registryKey);
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/util/ULocaleCollationTest.java:[327,17] Importing nested classes/static methods/static fields with commonly-used names can make code harder to read, because it may not be clear from the context exactly which type is being referred to. Qualifying the name with that of the containing class can make the code clearer. Here we recommend using qualified class: DisplayContext.
Did you mean
for (DisplayContext.Type type : DisplayContext.Type.values()) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TimeZoneFormatTest.java:[1564,23] Importing nested classes/static methods/static fields with commonly-used names can make code harder to read, because it may not be clear from the context exactly which type is being referred to. Qualifying the name with that of the containing class can make the code clearer. Here we recommend using qualified class: TimeZoneNames.
Did you mean
factory = (TimeZoneNames.Factory) cls.newInstance();
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ICUServiceTest.java:[139,13] Importing nested classes/static methods/static fields with commonly-used names can make code harder to read, because it may not be clear from the context exactly which type is being referred to. Qualifying the name with that of the containing class can make the code clearer. Here we recommend using qualified class: ICUService.
Did you mean
List<ICUService.Factory> factories = service.factories();
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ICUServiceTest.java:[106,15] Importing nested classes/static methods/static fields with commonly-used names can make code harder to read, because it may not be clear from the context exactly which type is being referred to. Qualifying the name with that of the containing class can make the code clearer. Here we recommend using qualified class: ICUService.
Did you mean
public ICUService.Key createKey(String id) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ULocaleTest.java:[3551,16] Importing nested classes/static methods/static fields with commonly-used names can make code harder to read, because it may not be clear from the context exactly which type is being referred to. Qualifying the name with that of the containing class can make the code clearer. Here we recommend using qualified class: ULocale.
Did you mean
ULocale.Builder bld = new ULocale.Builder();

[WARNING] BadInstanceof [Simplification] (12) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/message2/MFDataModelFormatter.java:[214,32] `ve.function` is an instance of FunctionRef which is a subtype of FunctionRef, so this is equivalent to a null check.
Did you mean
if (ve.function != null) {
icu4j/main/core/src/main/java/com/ibm/icu/message2/MFDataModelFormatter.java:[220,32] `le.function` is an instance of FunctionRef which is a subtype of FunctionRef, so this is equivalent to a null check.
Did you mean
if (le.function != null) {
icu4j/main/core/src/main/java/com/ibm/icu/message2/MFDataModelFormatter.java:[569,21] `function` is an instance of FunctionRef which is a subtype of FunctionRef, so this is equivalent to a null check.
Did you mean
if (function != null) {
icu4j/main/core/src/main/java/com/ibm/icu/message2/MFDataModelValidator.java:[164,21] `function` is an instance of FunctionRef which is a subtype of FunctionRef, so this is equivalent to a null check.
Did you mean
if (function != null) {
icu4j/main/core/src/main/java/com/ibm/icu/message2/MFParser.java:[293,21] `function` is an instance of MFDataModel.FunctionRef which is a subtype of MFDataModel.FunctionRef, so this is equivalent to a null check.
Did you mean
if (function != null) {
icu4j/main/core/src/main/java/com/ibm/icu/message2/MFParser.java:[324,21] `function` is an instance of MFDataModel.FunctionRef which is a subtype of MFDataModel.FunctionRef, so this is equivalent to a null check.
Did you mean
if (function != null) {
icu4j/main/core/src/main/java/com/ibm/icu/message2/MFSerializer.java:[190,21] `function` is a non-null instance of FunctionRef which is a subtype of FunctionRef, so this check is always true.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10004,55] `d.toCharArray()` is an instance of char[] which is a subtype of char[], so this is equivalent to a null check.
Did you mean
TestFmwk.assertTrue("tca003", (d.toCharArray() != null));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10005,42] `ca` is a non-null instance of char[] which is a subtype of char[], so this check is always true.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10029,42] `cs` is a non-null instance of String which is a subtype of java.lang.String, so this check is always true.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10030,52] `d.toString()` is an instance of String which is a subtype of java.lang.String, so this is equivalent to a null check.
Did you mean
TestFmwk.assertTrue("tos006", (d.toString() != null));
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ICUResourceBundleTest.java:[106,19] `bundle` is an instance of UResourceBundle which is a subtype of UResourceBundle, so this is equivalent to a null check.
Did you mean
if (bundle != null && bundle.getULocale().getName().equals("en_US")) {

[WARNING] BigDecimalEquals (1) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/number/Precision.java:[476,28] BigDecimal#equals has surprising behavior: it also compares scale.

[WARNING] ByteBufferBackingArray (4) 🔗

File and line number Message
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[2127,42] ByteBuffer.array() shouldn't be called unless ByteBuffer.arrayOffset() is used or if the ByteBuffer was initialized using ByteBuffer.wrap() or ByteBuffer.allocate().
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestCharset.java:[998,52] ByteBuffer.array() shouldn't be called unless ByteBuffer.arrayOffset() is used or if the ByteBuffer was initialized using ByteBuffer.wrap() or ByteBuffer.allocate().
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestConversion.java:[357,43] ByteBuffer.array() shouldn't be called unless ByteBuffer.arrayOffset() is used or if the ByteBuffer was initialized using ByteBuffer.wrap() or ByteBuffer.allocate().
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/charsetdet/sbcs/InputFile.java:[141,23] ByteBuffer.array() shouldn't be called unless ByteBuffer.arrayOffset() is used or if the ByteBuffer was initialized using ByteBuffer.wrap() or ByteBuffer.allocate().

[WARNING] CatchAndPrintStackTrace (25) 🔗

File and line number Message
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/JapaneseTest.java:[523,12] Logging or rethrowing exceptions should usually be preferred to catching and calling printStackTrace
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterCaseTest.java:[878,12] Logging or rethrowing exceptions should usually be preferred to catching and calling printStackTrace
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterCompare.java:[193,12] Logging or rethrowing exceptions should usually be preferred to catching and calling printStackTrace
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterTest.java:[918,12] Logging or rethrowing exceptions should usually be preferred to catching and calling printStackTrace
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationMiscTest.java:[2993,12] Logging or rethrowing exceptions should usually be preferred to catching and calling printStackTrace
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationTest.java:[1924,16] Logging or rethrowing exceptions should usually be preferred to catching and calling printStackTrace
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/serializable/SerializableTestUtility.java:[74,12] Logging or rethrowing exceptions should usually be preferred to catching and calling printStackTrace
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/serializable/FormatHandler.java:[2096,20] Logging or rethrowing exceptions should usually be preferred to catching and calling printStackTrace
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/serializable/FormatHandler.java:[2142,20] Logging or rethrowing exceptions should usually be preferred to catching and calling printStackTrace
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[3725,16] Logging or rethrowing exceptions should usually be preferred to catching and calling printStackTrace
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/Demo.java:[804,12] Logging or rethrowing exceptions should usually be preferred to catching and calling printStackTrace
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/Demo.java:[1158,12] Logging or rethrowing exceptions should usually be preferred to catching and calling printStackTrace
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/coverage/JacocoReportCheck.java:[79,16] Logging or rethrowing exceptions should usually be preferred to catching and calling printStackTrace
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/coverage/JacocoReportCheck.java:[206,32] Logging or rethrowing exceptions should usually be preferred to catching and calling printStackTrace
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/coverage/JacocoReportCheck.java:[240,36] Logging or rethrowing exceptions should usually be preferred to catching and calling printStackTrace
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/coverage/JacocoReportCheck.java:[246,36] Logging or rethrowing exceptions should usually be preferred to catching and calling printStackTrace
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/docs/CollectAPI.java:[262,12] Logging or rethrowing exceptions should usually be preferred to catching and calling printStackTrace
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/timezone/ICUZDump.java:[146,16] Logging or rethrowing exceptions should usually be preferred to catching and calling printStackTrace
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/timezone/ICUZDump.java:[158,16] Logging or rethrowing exceptions should usually be preferred to catching and calling printStackTrace
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/timezone/ICUZDump.java:[326,16] Logging or rethrowing exceptions should usually be preferred to catching and calling printStackTrace
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/timezone/ICUZDump.java:[341,16] Logging or rethrowing exceptions should usually be preferred to catching and calling printStackTrace
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/translit/WriteIndicCharts.java:[268,12] Logging or rethrowing exceptions should usually be preferred to catching and calling printStackTrace
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/translit/WriteIndicCharts.java:[400,12] Logging or rethrowing exceptions should usually be preferred to catching and calling printStackTrace
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/DateFormatPerformanceTest.java:[82,20] Logging or rethrowing exceptions should usually be preferred to catching and calling printStackTrace
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/DateFormatPerformanceTest.java:[94,20] Logging or rethrowing exceptions should usually be preferred to catching and calling printStackTrace

[WARNING] CharacterGetNumericValue (16) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/text/SpoofChecker.java:[1767,65] getNumericValue has unexpected behaviour: it interprets A-Z as base-36 digits with values 10-35, but also supports non-arabic numerals and miscellaneous numeric unicode characters like ㊷; consider using Character.digit or UCharacter.getUnicodeNumericValue instead
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterCompare.java:[60,50] getNumericValue has unexpected behaviour: it interprets A-Z as base-36 digits with values 10-35, but also supports non-arabic numerals and miscellaneous numeric unicode characters like ㊷; consider using Character.digit or UCharacter.getUnicodeNumericValue instead
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterCompare.java:[60,82] getNumericValue has unexpected behaviour: it interprets A-Z as base-36 digits with values 10-35, but also supports non-arabic numerals and miscellaneous numeric unicode characters like ㊷; consider using Character.digit or UCharacter.getUnicodeNumericValue instead
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterCompare.java:[65,63] getNumericValue has unexpected behaviour: it interprets A-Z as base-36 digits with values 10-35, but also supports non-arabic numerals and miscellaneous numeric unicode characters like ㊷; consider using Character.digit or UCharacter.getUnicodeNumericValue instead
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterCompare.java:[66,62] getNumericValue has unexpected behaviour: it interprets A-Z as base-36 digits with values 10-35, but also supports non-arabic numerals and miscellaneous numeric unicode characters like ㊷; consider using Character.digit or UCharacter.getUnicodeNumericValue instead
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterTest.java:[368,38] getNumericValue has unexpected behaviour: it interprets A-Z as base-36 digits with values 10-35, but also supports non-arabic numerals and miscellaneous numeric unicode characters like ㊷; consider using Character.digit or UCharacter.getUnicodeNumericValue instead
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterTest.java:[373,47] getNumericValue has unexpected behaviour: it interprets A-Z as base-36 digits with values 10-35, but also supports non-arabic numerals and miscellaneous numeric unicode characters like ㊷; consider using Character.digit or UCharacter.getUnicodeNumericValue instead
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterTest.java:[380,47] getNumericValue has unexpected behaviour: it interprets A-Z as base-36 digits with values 10-35, but also supports non-arabic numerals and miscellaneous numeric unicode characters like ㊷; consider using Character.digit or UCharacter.getUnicodeNumericValue instead
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterTest.java:[388,47] getNumericValue has unexpected behaviour: it interprets A-Z as base-36 digits with values 10-35, but also supports non-arabic numerals and miscellaneous numeric unicode characters like ㊷; consider using Character.digit or UCharacter.getUnicodeNumericValue instead
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterTest.java:[2572,50] getNumericValue has unexpected behaviour: it interprets A-Z as base-36 digits with values 10-35, but also supports non-arabic numerals and miscellaneous numeric unicode characters like ㊷; consider using Character.digit or UCharacter.getUnicodeNumericValue instead
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterTest.java:[3275,50] getNumericValue has unexpected behaviour: it interprets A-Z as base-36 digits with values 10-35, but also supports non-arabic numerals and miscellaneous numeric unicode characters like ㊷; consider using Character.digit or UCharacter.getUnicodeNumericValue instead
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterTest.java:[3280,68] getNumericValue has unexpected behaviour: it interprets A-Z as base-36 digits with values 10-35, but also supports non-arabic numerals and miscellaneous numeric unicode characters like ㊷; consider using Character.digit or UCharacter.getUnicodeNumericValue instead
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/CharsTrieTest.java:[358,61] getNumericValue has unexpected behaviour: it interprets A-Z as base-36 digits with values 10-35, but also supports non-arabic numerals and miscellaneous numeric unicode characters like ㊷; consider using Character.digit or UCharacter.getUnicodeNumericValue instead
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/DumbTextComponent.java:[799,49] getNumericValue has unexpected behaviour: it interprets A-Z as base-36 digits with values 10-35, but also supports non-arabic numerals and miscellaneous numeric unicode characters like ㊷; consider using Character.digit or UCharacter.getUnicodeNumericValue instead
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[71,46] getNumericValue has unexpected behaviour: it interprets A-Z as base-36 digits with values 10-35, but also supports non-arabic numerals and miscellaneous numeric unicode characters like ㊷; consider using Character.digit or UCharacter.getUnicodeNumericValue instead
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[85,45] getNumericValue has unexpected behaviour: it interprets A-Z as base-36 digits with values 10-35, but also supports non-arabic numerals and miscellaneous numeric unicode characters like ㊷; consider using Character.digit or UCharacter.getUnicodeNumericValue instead

[ICU_PRIORITY_2] ClassCanBeStatic [Style, Performance] (38) 🔗

File and line number Message
icu4j/main/framework/src/test/java/com/ibm/icu/dev/test/TestFmwk.java:[149,14] Inner class is non-static but does not reference enclosing class
Did you mean
protected static class ICU_Rand {
icu4j/main/core/src/main/java/com/ibm/icu/text/UnicodeSet.java:[5307,12] Inner class is non-static but does not reference enclosing class
Did you mean
private static class CodePointIterator implements Iterator<Integer> {
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/MeasureUnitImpl.java:[471,16] Inner class is non-static but does not reference enclosing class
Did you mean
private static class SingleUnitOrConstant {
icu4j/main/core/src/main/java/com/ibm/icu/impl/breakiter/LSTMBreakEngine.java:[149,13] Inner class is non-static but does not reference enclosing class
Did you mean
abstract static class Vectorizer {
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/UnitsRouter.java:[184,11] Inner class is non-static but does not reference enclosing class
Did you mean
public static class RouteResult {
icu4j/main/core/src/main/java/com/ibm/icu/util/ChineseCalendar.java:[895,4] Inner class is non-static but does not reference enclosing class
Did you mean
static class MonthInfo {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bidi/BiDiConformanceTest.java:[367,12] Inner class is non-static but does not reference enclosing class
Did you mean
private static class ConfTestBidiClassifier extends BidiClassifier {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bidi/TestContext.java:[22,12] Inner class is non-static but does not reference enclosing class
Did you mean
private static class ContextCase {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateTimeGeneratorTest.java:[1200,18] Inner class is non-static but does not reference enclosing class
Did you mean
private static final class AppendItemName {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateTimeGeneratorTest.java:[1534,18] Inner class is non-static but does not reference enclosing class
Did you mean
private static final class TestOptionsItem {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateTimeGeneratorTest.java:[1712,18] Inner class is non-static but does not reference enclosing class
Did you mean
private static final class AllFieldsTestItem {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateTimeGeneratorTest.java:[1959,18] Inner class is non-static but does not reference enclosing class
Did you mean
private static final class FieldDisplayNameData {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateTimeGeneratorTest.java:[2300,18] Inner class is non-static but does not reference enclosing class
Did you mean
private static final class DTPLocaleAndResults {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/MessagePatternUtilTest.java:[126,12] Inner class is non-static but does not reference enclosing class
Did you mean
private static class ExpectMessageContentsNode {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/iterator/TestUCharacterIterator.java:[234,4] Inner class is non-static but does not reference enclosing class
Did you mean
static class UCharIterator {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[2325,11] Inner class is non-static but does not reference enclosing class
Did you mean
public static class TokenSymbolTable implements SymbolTable {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/AbstractBreakIteratorTests.java:[20,12] Inner class is non-static but does not reference enclosing class
Did you mean
private static class AbstractBreakIterator extends BreakIterator {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/RBBIMonkeyTest.java:[863,8] Inner class is non-static but does not reference enclosing class
Did you mean
static class MonkeyException extends RuntimeException {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/VersionInfoTest.java:[361,12] Inner class is non-static but does not reference enclosing class
Did you mean
private static class GetInstanceWorker extends Thread {
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationMiscTest.java:[2478,12] Inner class is non-static but does not reference enclosing class
Did you mean
private static class OneTestCase {
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetASCII.java:[30,4] Inner class is non-static but does not reference enclosing class
Did you mean
static class CharsetDecoderASCII extends CharsetDecoderICU {
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestConversion.java:[45,12] Inner class is non-static but does not reference enclosing class
Did you mean
private static class ConversionCase {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TimeZoneFormatTest.java:[1521,4] Inner class is non-static but does not reference enclosing class
Did you mean
static class TimeZoneNamesInheriter extends TimeZoneNames {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/normalizer/BasicTest.java:[1386,4] Inner class is non-static but does not reference enclosing class
Did you mean
static class UCharIterator {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/normalizer/BasicTest.java:[2139,10] Inner class is non-static but does not reference enclosing class
Did you mean
static final class Temp {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/normalizer/BasicTest.java:[3320,11] Inner class is non-static but does not reference enclosing class
Did you mean
public static class TestNormalizer2 extends Normalizer2 {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/number/NumberRangeFormatterTest.java:[904,12] Inner class is non-static but does not reference enclosing class
Did you mean
private static class RangePatternSink extends UResource.Sink {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/CurrencyTest.java:[1052,11] Inner class is non-static but does not reference enclosing class
Did you mean
public static class TestCurrencyMetaInfo extends CurrencyMetaInfo {}
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/Launcher.java:[47,11] Inner class is non-static but does not reference enclosing class
Did you mean
public static class LauncherFrame extends Frame implements ActionListener {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarCalc.java:[482,4] Inner class is non-static but does not reference enclosing class
Did you mean
static class CalendarRec {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarFrame.java:[398,4] Inner class is non-static but does not reference enclosing class
Did you mean
static class CalendarRec {
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/docs/CheckTags.java:[55,4] Inner class is non-static but does not reference enclosing class
Did you mean
static class DocNode {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethodImpl.java:[302,12] Inner class is non-static but does not reference enclosing class
Did you mean
private static class ACIText implements AttributedCharacterIterator, Cloneable {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/ArabicCharacterData.java:[21,11] Inner class is non-static but does not reference enclosing class
Did you mean
public static class Record {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/localeconverter/XLIFF2ICUConverter.java:[693,12] Inner class is non-static but does not reference enclosing class
Did you mean
private static class Resource {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/timezone/ICUZDump.java:[133,12] Inner class is non-static but does not reference enclosing class
Did you mean
private static class TimeZoneImpl {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/timezone/ICUZDump.java:[184,11] Inner class is non-static but does not reference enclosing class
Did you mean
public static class DumpFormatter {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/PerfTest.java:[261,12] Inner class is non-static but does not reference enclosing class
Did you mean
private static class FunctionRunner implements Runnable {

[WARNING] ClassNewInstance [FragileCode] (14) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/text/BreakIterator.java:[966,65] Class.newInstance() bypasses exception checking; prefer getDeclaredConstructor().newInstance()
Did you mean
shim = (BreakIteratorServiceShim) cls.getDeclaredConstructor().newInstance();
icu4j/main/core/src/main/java/com/ibm/icu/impl/CurrencyData.java:[128,65] Class.newInstance() bypasses exception checking; prefer getDeclaredConstructor().newInstance()
Did you mean
temp = (CurrencyDisplayInfoProvider) clzz.getDeclaredConstructor().newInstance();
icu4j/main/core/src/main/java/com/ibm/icu/text/CurrencyMetaInfo.java:[611,54] Class.newInstance() bypasses exception checking; prefer getDeclaredConstructor().newInstance()
Did you mean
temp = (CurrencyMetaInfo) clzz.getDeclaredConstructor().newInstance();
icu4j/main/core/src/main/java/com/ibm/icu/util/Currency.java:[168,52] Class.newInstance() bypasses exception checking; prefer getDeclaredConstructor().newInstance()
Did you mean
shim = (ServiceShim) cls.getDeclaredConstructor().newInstance();
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[1045,57] Class.newInstance() bypasses exception checking; prefer getDeclaredConstructor().newInstance()
Did you mean
shim = (NumberFormatShim) cls.getDeclaredConstructor().newInstance();
icu4j/main/core/src/main/java/com/ibm/icu/text/TimeZoneNames.java:[146,72] Class.newInstance() bypasses exception checking; prefer getDeclaredConstructor().newInstance()
Did you mean
factory = (Factory) Class.forName(classname).getDeclaredConstructor().newInstance();
icu4j/main/core/src/main/java/com/ibm/icu/impl/LocaleDisplayNamesImpl.java:[766,72] Class.newInstance() bypasses exception checking; prefer getDeclaredConstructor().newInstance()
Did you mean
return (DataTables) Class.forName(className).getDeclaredConstructor().newInstance();
icu4j/main/core/src/main/java/com/ibm/icu/impl/ResourceBundleWrapper.java:[213,63] Class.newInstance() bypasses exception checking; prefer getDeclaredConstructor().newInstance()
Did you mean
ResourceBundle bx = cls.getDeclaredConstructor().newInstance();
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/XCldrStub.java:[84,43] Class.newInstance() bypasses exception checking; prefer getDeclaredConstructor().newInstance()
Did you mean
return setClass.getDeclaredConstructor().newInstance();
icu4j/main/core/src/main/java/com/ibm/icu/text/RuleBasedNumberFormat.java:[1407,68] Class.newInstance() bypasses exception checking; prefer getDeclaredConstructor().newInstance()
Did you mean
(RbnfLenientScannerProvider) cls.getDeclaredConstructor().newInstance();
icu4j/main/core/src/main/java/com/ibm/icu/text/RuleBasedNumberFormat.java:[2001,71] Class.newInstance() bypasses exception checking; prefer getDeclaredConstructor().newInstance()
Did you mean
postProcessor = (RBNFPostProcessor) cls.getDeclaredConstructor().newInstance();
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[603,52] Class.newInstance() bypasses exception checking; prefer getDeclaredConstructor().newInstance()
Did you mean
shim = (ServiceShim) cls.getDeclaredConstructor().newInstance();
icu4j/main/translit/src/main/java/com/ibm/icu/text/TransliteratorRegistry.java:[816,71] Class.newInstance() bypasses exception checking; prefer getDeclaredConstructor().newInstance()
Did you mean
return (Transliterator) ((Class) entry).getDeclaredConstructor().newInstance();
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TimeZoneFormatTest.java:[1564,47] Class.newInstance() bypasses exception checking; prefer getDeclaredConstructor().newInstance()
Did you mean
factory = (Factory) cls.getDeclaredConstructor().newInstance();

[WARNING] CollectionUndefinedEquality [FragileCode] (1) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/impl/SimpleFilteredSentenceBreakIterator.java:[334,35] CharSequence does not have well-defined equals behavior.

[ERROR] ComparableType (1) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/impl/Row.java:[17,7] Comparable should not be raw

[WARNING] CompareToZero (10) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/ComplexUnitsConverter.java:[220,57] The result of #compareTo or #compare should only be compared to 0. It is an implementation detail whether a given type returns strictly the values {-1, 0, +1} or others.
Did you mean
if (remainder.compareTo(BigDecimal.ZERO) < 0) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2181,24] The result of #compareTo or #compare should only be compared to 0. It is an implementation detail whether a given type returns strictly the values {-1, 0, +1} or others.
Did you mean
((new com.ibm.icu.math.BigDecimal("5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2201,24] The result of #compareTo or #compare should only be compared to 0. It is an implementation detail whether a given type returns strictly the values {-1, 0, +1} or others.
Did you mean
((new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2206,24] The result of #compareTo or #compare should only be compared to 0. It is an implementation detail whether a given type returns strictly the values {-1, 0, +1} or others.
Did you mean
((new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2211,24] The result of #compareTo or #compare should only be compared to 0. It is an implementation detail whether a given type returns strictly the values {-1, 0, +1} or others.
Did you mean
((new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2216,24] The result of #compareTo or #compare should only be compared to 0. It is an implementation detail whether a given type returns strictly the values {-1, 0, +1} or others.
Did you mean
((new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/impl/UnitsTest.java:[35,58] The result of #compareTo or #compare should only be compared to 0. It is an implementation detail whether a given type returns strictly the values {-1, 0, +1} or others.
Did you mean
expected.abs().compareTo(BigDecimal.ZERO) <= 0
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/impl/UnitsTest.java:[40,34] The result of #compareTo or #compare should only be compared to 0. It is an implementation detail whether a given type returns strictly the values {-1, 0, +1} or others.
Did you mean
if (diff.compareTo(delta) < 0) return true;
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationMiscTest.java:[1423,53] The result of #compareTo or #compare should only be compared to 0. It is an implementation detail whether a given type returns strictly the values {-1, 0, +1} or others.
Did you mean
if (coll.compare(testdata2[0], testdata2[1]) >= 0) {
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationMiscTest.java:[1427,53] The result of #compareTo or #compare should only be compared to 0. It is an implementation detail whether a given type returns strictly the values {-1, 0, +1} or others.
Did you mean
if (coll.compare(testdata2[1], testdata2[2]) >= 0) {

[WARNING] DateChecker (69) 🔗

File and line number Message
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3725,26] This Date usage looks suspect for the following reason(s): Use Calendar.JULY instead of 6 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3726,26] This Date usage looks suspect for the following reason(s): Use Calendar.JULY instead of 6 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3825,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3827,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3833,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3835,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3841,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3843,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3849,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3851,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3857,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3859,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3865,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3867,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3873,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3875,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3881,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3883,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3889,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3891,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3897,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3899,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3905,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3907,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3913,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3915,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3921,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3923,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3929,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3931,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3937,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3939,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3945,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3947,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3953,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3955,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3961,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3963,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3969,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3971,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3977,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3979,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3985,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3987,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3993,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3995,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4001,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4003,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4009,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4011,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4017,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4019,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4025,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4027,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4033,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4035,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4041,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4043,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4049,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4051,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4057,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4059,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4065,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4067,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4073,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4075,16] This Date usage looks suspect for the following reason(s): The 1900-based year value (2019) is out of bounds [1..150]. Use Calendar.MARCH instead of 2 to represent the month.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormat.java:[287,26] This Date usage looks suspect for the following reason(s): Use Calendar.OCTOBER instead of 9 to represent the month.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[139,24] This Date usage looks suspect for the following reason(s): Use Calendar.JULY instead of 6 to represent the month.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[1592,24] This Date usage looks suspect for the following reason(s): The 1900-based year value (0) is out of bounds [1..150]. Use Calendar.JANUARY instead of 0 to represent the month. The day value (0) is out of bounds [1..31].

[ICU_PRIORITY_1] DefaultCharset [FragileCode] (35) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/impl/URLHandler.java:[46,40] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
br = new BufferedReader(new InputStreamReader(is, UTF_8));' or 'br = new BufferedReader(new InputStreamReader(is, Charset.defaultCharset()));
icu4j/main/core/src/main/java/com/ibm/icu/impl/data/ResourceReader.java:[98,30] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
? new InputStreamReader(is, UTF_8)' or '? new InputStreamReader(is, Charset.defaultCharset())
icu4j/main/core/src/main/java/com/ibm/icu/impl/data/ResourceReader.java:[236,26] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
? new InputStreamReader(is, UTF_8)' or '? new InputStreamReader(is, Charset.defaultCharset())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DataDrivenNumberFormatTestUtility.java:[254,63] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
String stackTrace = os.toString(UTF_8);' or 'String stackTrace = os.toString(Charset.defaultCharset());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DataDrivenNumberFormatTestUtility.java:[271,43] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
String stackTrace = os.toString(UTF_8);' or 'String stackTrace = os.toString(Charset.defaultCharset());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/PersonNameConsistencyTest.java:[56,37] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
new LineNumberReader(new InputStreamReader(catalogFileStream, UTF_8));' or 'new LineNumberReader(new InputStreamReader(catalogFileStream, Charset.defaultCharset()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/WriteNumberFormatSerialTestData.java:[49,38] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
file.write(header.getBytes(UTF_8));' or 'file.write(header.getBytes(Charset.defaultCharset()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/WriteNumberFormatSerialTestData.java:[66,38] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
file.write(footer.getBytes(UTF_8));' or 'file.write(footer.getBytes(Charset.defaultCharset()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/WriteNumberFormatSerialTestData.java:[90,52] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
file.write(("\n " + comment).getBytes(UTF_8));' or 'file.write(("\n " + comment).getBytes(Charset.defaultCharset()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/WriteNumberFormatSerialTestData.java:[94,42] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
file.write(" ".getBytes(UTF_8));' or 'file.write(" ".getBytes(Charset.defaultCharset()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/WriteNumberFormatSerialTestData.java:[96,66] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
file.write(String.valueOf((int) myArr[i]).getBytes(UTF_8));' or 'file.write(String.valueOf((int) myArr[i]).getBytes(Charset.defaultCharset()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/WriteNumberFormatSerialTestData.java:[97,40] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
file.write(", ".getBytes(UTF_8));' or 'file.write(", ".getBytes(Charset.defaultCharset()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/WriteNumberFormatSerialTestData.java:[99,44] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
file.write("\n".getBytes(UTF_8));' or 'file.write("\n".getBytes(Charset.defaultCharset()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/WriteNumberFormatSerialTestData.java:[100,50] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
file.write(" ".getBytes(UTF_8));' or 'file.write(" ".getBytes(Charset.defaultCharset()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/impl/ResourceBundleWrapperCachingTest.java:[54,20] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
.readAllBytes(), UTF_8)' or '.readAllBytes(), Charset.defaultCharset())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterCompare.java:[37,37] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
Writer f;' or 'Writer f;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterCompare.java:[38,21] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
Writer f;' or 'Writer f;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[599,44] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
OutputStreamWriter writer = new OutputStreamWriter(baos, UTF_8);' or 'OutputStreamWriter writer = new OutputStreamWriter(baos, Charset.defaultCharset());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[605,43] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
InputStreamReader reader = new InputStreamReader(bais, UTF_8);' or 'InputStreamReader reader = new InputStreamReader(bais, Charset.defaultCharset());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[611,45] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
OutputStreamWriter writer1 = new OutputStreamWriter(baos1, UTF_8);' or 'OutputStreamWriter writer1 = new OutputStreamWriter(baos1, Charset.defaultCharset());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[693,48] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
OutputStreamWriter writer = new OutputStreamWriter(baos, UTF_8);' or 'OutputStreamWriter writer = new OutputStreamWriter(baos, Charset.defaultCharset());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[699,47] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
InputStreamReader reader = new InputStreamReader(bais, UTF_8);' or 'InputStreamReader reader = new InputStreamReader(bais, Charset.defaultCharset());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[781,48] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
OutputStreamWriter writer = new OutputStreamWriter(baos, UTF_8);' or 'OutputStreamWriter writer = new OutputStreamWriter(baos, Charset.defaultCharset());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[787,47] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
InputStreamReader reader = new InputStreamReader(bais, UTF_8);' or 'InputStreamReader reader = new InputStreamReader(bais, Charset.defaultCharset());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[828,40] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
OutputStreamWriter writer = new OutputStreamWriter(baos, UTF_8);' or 'OutputStreamWriter writer = new OutputStreamWriter(baos, Charset.defaultCharset());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[834,39] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
InputStreamReader reader = new InputStreamReader(bais, UTF_8);' or 'InputStreamReader reader = new InputStreamReader(bais, Charset.defaultCharset());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[865,40] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
OutputStreamWriter writer = new OutputStreamWriter(baos, UTF_8);' or 'OutputStreamWriter writer = new OutputStreamWriter(baos, Charset.defaultCharset());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[871,39] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
InputStreamReader reader = new InputStreamReader(bais, UTF_8);' or 'InputStreamReader reader = new InputStreamReader(bais, Charset.defaultCharset());
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ICUResourceBundleTest.java:[69,47] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
new BufferedReader(new InputStreamReader(c.getInputStream(), UTF_8));' or 'new BufferedReader(new InputStreamReader(c.getInputStream(), Charset.defaultCharset()));
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/ModuleWriter.java:[118,40] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
reader = Files.newBufferedReader(Paths.get(BUILDER_FILE_PATH + file), UTF_8);' or 'reader = Files.newBufferedReader(Paths.get(BUILDER_FILE_PATH + file), Charset.defaultCharset());
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/LigatureTree.java:[224,25] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
PrintWriter pw = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out, UTF_8)));' or 'PrintWriter pw = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out, Charset.defaultCharset())));
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/localeconverter/CalculateCRC32.java:[62,43] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
return computeCRC32(buffer.getBytes(UTF_8), crc);' or 'return computeCRC32(buffer.getBytes(Charset.defaultCharset()), crc);
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/timezone/ICUZDump.java:[313,29] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
PrintWriter pw = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out, UTF_8)));' or 'PrintWriter pw = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out, Charset.defaultCharset())));
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/timezone/ICUZDump.java:[336,50] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
Writer w = new BufferedWriter(new OutputStreamWriter(fos, UTF_8));' or 'Writer w = new BufferedWriter(new OutputStreamWriter(fos, Charset.defaultCharset()));
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/translit/Trans.java:[70,18] Implicit use of the platform default charset, which can result in differing behaviour between JVM executions or incorrect behavior if the encoding of the data source doesn't match expectations.
Did you mean
out = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out, UTF_8)));' or 'out = new PrintWriter(new BufferedWriter(new OutputStreamWriter(System.out, Charset.defaultCharset())));

[WARNING] DoubleCheckedLocking [FragileCode] (1) 🔗

File and line number Message
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/translit/TransliteratorInputMethod.java:[121,8] Double-checked locking on non-volatile fields is unsafe
Did you mean
private static volatile Window statusWindow;

[WARNING] EmptyBlockTag (227) 🔗

File and line number Message
icu4j/main/framework/src/test/java/com/ibm/icu/dev/test/TestFmwk.java:[658,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/framework/src/test/java/com/ibm/icu/dev/test/TestFmwk.java:[660,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/framework/src/test/java/com/ibm/icu/dev/test/TestFmwk.java:[670,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/framework/src/test/java/com/ibm/icu/dev/test/TestFmwk.java:[672,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/framework/src/test/java/com/ibm/icu/dev/test/TestFmwk.java:[682,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/framework/src/test/java/com/ibm/icu/dev/test/TestFmwk.java:[684,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/framework/src/test/java/com/ibm/icu/dev/test/TestFmwk.java:[699,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/framework/src/test/java/com/ibm/icu/dev/test/TestFmwk.java:[701,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/text/UnicodeSet.java:[619,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/text/UnicodeSet.java:[637,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[1149,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/CaseMapImpl.java:[365,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/CaseMapImpl.java:[841,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/CaseMapImpl.java:[1447,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/ICUResourceBundle.java:[1205,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/ICUResourceBundle.java:[1235,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/IntTrieBuilder.java:[625,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/IntTrieBuilder.java:[626,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/IntTrieBuilder.java:[627,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/TrieBuilder.java:[206,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/text/TimeZoneFormat.java:[3309,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/text/TimeZoneFormat.java:[3327,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/text/TimeZoneFormat.java:[3328,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[555,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
icu4j/main/core/src/main/java/com/ibm/icu/text/PluralRules.java:[1193,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/text/PluralRules.java:[1194,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[2635,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[2636,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/RBBIDataWrapper.java:[487,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/RBBIDataWrapper.java:[488,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/text/MessagePattern.java:[1617,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/text/SimpleDateFormat.java:[3020,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/text/SimpleDateFormat.java:[3077,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/text/SimpleDateFormat.java:[3098,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/text/SimpleDateFormat.java:[3268,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/text/SimpleDateFormat.java:[3326,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/SimpleFilteredSentenceBreakIterator.java:[58,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/StringRange.java:[28,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UCharacterName.java:[604,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UCharacterNameReader.java:[101,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UCharacterNameReader.java:[102,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[186,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[252,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[253,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[267,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[268,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[294,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[295,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[408,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[409,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[424,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[425,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[453,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[454,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[472,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[473,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[474,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[608,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[640,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[653,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[671,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[672,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[701,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[702,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[849,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[902,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[1283,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[1292,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[1305,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[1306,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[1316,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[1317,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMapIterator.java:[186,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/LocaleValidityChecker.java:[148,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/LocaleValidityChecker.java:[149,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/LocaleValidityChecker.java:[150,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/LocaleValidityChecker.java:[151,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/LocaleValidityChecker.java:[152,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/LocaleValidityChecker.java:[274,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/LocaleValidityChecker.java:[275,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/LocaleValidityChecker.java:[276,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/LocaleValidityChecker.java:[310,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/LocaleValidityChecker.java:[311,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/LocaleValidityChecker.java:[332,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/LocaleValidityChecker.java:[333,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/LocaleValidityChecker.java:[334,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/LocaleValidityChecker.java:[350,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/LocaleValidityChecker.java:[351,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/LocaleValidityChecker.java:[352,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/LocaleValidityChecker.java:[353,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/UnitsConverter.java:[593,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/ConversionRates.java:[39,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/ConversionRates.java:[40,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/ConversionRates.java:[149,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/UnitPreferences.java:[52,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/UnitPreferences.java:[53,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/UnitPreferences.java:[141,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/UnitPreferences.java:[142,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/UnitPreferences.java:[143,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/segmenter/LocalizedSegmenter.java:[134,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/text/DateIntervalInfo.java:[464,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/text/DateIntervalInfo.java:[480,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/text/DateIntervalInfo.java:[514,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/text/DateIntervalInfo.java:[515,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[2415,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[2789,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/text/RuleBasedBreakIterator.java:[1862,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/util/IslamicCalendar.java:[367,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/TestDataModule.java:[27,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/ResourceModule.java:[118,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/TestBoilerplate.java:[122,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/UnicodeMapTest.java:[170,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/UnicodeMapTest.java:[171,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/UnicodeMapTest.java:[172,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/UnicodeMapTest.java:[173,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/UnicodeMapTest.java:[186,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/UnicodeMapTest.java:[187,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/UnicodeMapTest.java:[245,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/UnicodeMapTest.java:[246,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/UnicodeMapTest.java:[247,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[2155,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[62,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[1643,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3294,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3295,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3296,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3297,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateTimeGeneratorTest.java:[775,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateTimeGeneratorTest.java:[776,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateTimeGeneratorTest.java:[839,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateTimeGeneratorTest.java:[840,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateTimeGeneratorTest.java:[889,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateTimeGeneratorTest.java:[929,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[2078,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[2079,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/BreakIteratorTest.java:[493,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/BreakIteratorTest.java:[494,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/BreakIteratorTest.java:[505,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/BreakIteratorTest.java:[506,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/BreakIteratorTest.java:[518,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/BreakIteratorTest.java:[519,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/IDNAConformanceTest.java:[170,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/IDNAConformanceTest.java:[171,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/IDNAConformanceTest.java:[172,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/IDNAConformanceTest.java:[173,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/IDNAConformanceTest.java:[174,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/IDNAConformanceTest.java:[175,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/IDNAConformanceTest.java:[176,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/CalendarFieldsSet.java:[19,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/CalendarFieldsSet.java:[20,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/DisplayNameTest.java:[82,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/DisplayNameTest.java:[359,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/DisplayNameTest.java:[379,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/DisplayNameTest.java:[380,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/Equator.java:[17,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/Equator.java:[18,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/Equator.java:[26,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/LocaleMatcherTest.java:[586,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/TrieMapTest.java:[456,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/BOCSU.java:[216,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationRuleParser.java:[501,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/collate/src/main/java/com/ibm/icu/text/RuleBasedCollator.java:[227,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/collate/src/main/java/com/ibm/icu/text/RuleBasedCollator.java:[1595,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/collate/src/main/java/com/ibm/icu/text/StringSearch.java:[619,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/collate/src/main/java/com/ibm/icu/util/GlobalizationPreferences.java:[885,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/collate/src/main/java/com/ibm/icu/util/GlobalizationPreferences.java:[886,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/collate/src/main/java/com/ibm/icu/util/GlobalizationPreferences.java:[909,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/collate/src/main/java/com/ibm/icu/util/GlobalizationPreferences.java:[1017,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/AlphabeticIndexTest.java:[661,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/AlphabeticIndexTest.java:[662,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/AlphabeticIndexTest.java:[663,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationMiscTest.java:[2501,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/translit/src/main/java/com/ibm/icu/text/AnyTransliterator.java:[210,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/translit/src/main/java/com/ibm/icu/text/AnyTransliterator.java:[211,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/translit/src/main/java/com/ibm/icu/text/CompoundTransliterator.java:[115,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/translit/src/main/java/com/ibm/icu/text/CompoundTransliterator.java:[116,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/translit/src/main/java/com/ibm/icu/text/CompoundTransliterator.java:[117,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/translit/src/main/java/com/ibm/icu/text/CompoundTransliterator.java:[118,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/RoundTripTest.java:[1897,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/RoundTripTest.java:[1898,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/RoundTripTest.java:[1905,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/RoundTripTest.java:[1906,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/TransliteratorTest.java:[3185,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/TransliteratorTest.java:[3186,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/TransliteratorTest.java:[3187,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/TransliteratorTest.java:[3207,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/TransliteratorTest.java:[3208,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/TransliteratorTest.java:[3209,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetICU.java:[105,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetICU.java:[106,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetICU.java:[107,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetDecoderICU.java:[117,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetDecoderICU.java:[139,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetEncoderICU.java:[153,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetEncoderICU.java:[165,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetEncoderICU.java:[779,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[5020,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[5021,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[5022,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[5023,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[5024,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DataDrivenFormatTest.java:[42,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DataDrivenFormatTest.java:[43,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/IntlTestDecimalFormatAPIC.java:[477,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/MeasureUnitTest.java:[1241,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/MeasureUnitTest.java:[1242,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatDataDrivenTest.java:[173,19] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatDataDrivenTest.java:[174,19] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatDataDrivenTest.java:[187,19] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatDataDrivenTest.java:[188,19] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatDataDrivenTest.java:[346,19] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatDataDrivenTest.java:[347,19] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatDataDrivenTest.java:[361,19] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatDataDrivenTest.java:[362,19] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/PluralRulesTest.java:[1754,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/PluralRulesTest.java:[1755,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/PluralRulesTest.java:[1885,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/PluralRulesTest.java:[1886,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/PluralRulesTest.java:[2039,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/PluralRulesTest.java:[2040,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/Launcher.java:[111,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/charsetdet/DetectingViewer.java:[56,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/samples/src/main/java/com/ibm/icu/samples/text/messagepattern/MessagePatternUtilDemo.java:[113,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/samples/src/main/java/com/ibm/icu/samples/text/messagepattern/MessagePatternUtilDemo.java:[289,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/samples/src/main/java/com/ibm/icu/samples/text/messagepattern/MessagePatternUtilDemo.java:[290,7] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/PerfTest.java:[107,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/PerfTest.java:[114,11] A block tag (@param, @return, @throws, @deprecated) has an empty description. Block tags without descriptions don't add much value for future readers of the code; consider removing the tag entirely or adding a description.
Did you mean
*

[ICU_PRIORITY_2] EmptyCatch [Style] (66) 🔗

File and line number Message
icu4j/main/framework/src/test/java/com/ibm/icu/dev/test/TestUtil.java:[123,14] Caught exceptions should not be ignored
icu4j/main/framework/src/test/java/com/ibm/icu/dev/test/TestUtil.java:[146,14] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/text/LocaleDisplayNames.java:[486,14] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/text/LocaleDisplayNames.java:[491,14] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[4194,18] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[4195,18] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[4196,18] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[4197,18] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/text/CurrencyMetaInfo.java:[650,10] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/impl/ICUData.java:[179,14] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/impl/ICUDebug.java:[17,10] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/impl/ICUNotifier.java:[142,18] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/impl/URLHandler.java:[90,18] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[4917,14] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/impl/JavaTimeZone.java:[215,14] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/impl/JavaTimeZone.java:[216,14] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/impl/JavaTimeZone.java:[217,14] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/impl/PluralRulesLoader.java:[196,14] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/impl/PluralRulesLoader.java:[197,14] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/impl/TimeZoneNamesImpl.java:[605,14] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/util/Holiday.java:[53,10] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/util/Holiday.java:[167,10] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/impl/data/ResourceReader.java:[103,10] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/impl/data/ResourceReader.java:[130,10] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/impl/data/ResourceReader.java:[209,10] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/impl/data/ResourceReader.java:[224,10] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/impl/duration/impl/ResourceBasedPeriodFormatterDataService.java:[73,14] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/impl/duration/impl/XMLRecordWriter.java:[50,10] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/text/BidiTransform.java:[355,14] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[332,10] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[339,10] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[347,10] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/text/TimeUnitFormat.java:[463,10] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/text/TimeUnitFormat.java:[545,14] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/text/RuleBasedNumberFormat.java:[834,10] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/text/RuleBasedNumberFormat.java:[994,10] Caught exceptions should not be ignored
icu4j/main/core/src/main/java/com/ibm/icu/util/ByteArrayWrapper.java:[223,10] Caught exceptions should not be ignored
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/ICUServiceTestSample.java:[28,10] Caught exceptions should not be ignored
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/ICUServiceTestSample.java:[65,18] Caught exceptions should not be ignored
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/ICUServiceTestSample.java:[90,18] Caught exceptions should not be ignored
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationLoader.java:[221,10] Caught exceptions should not be ignored
icu4j/main/translit/src/main/java/com/ibm/icu/text/Transliterator.java:[1419,10] Caught exceptions should not be ignored
icu4j/main/translit/src/main/java/com/ibm/icu/text/Transliterator.java:[1433,18] Caught exceptions should not be ignored
icu4j/main/translit/src/main/java/com/ibm/icu/text/Transliterator.java:[1441,10] Caught exceptions should not be ignored
icu4j/main/translit/src/main/java/com/ibm/icu/text/TransliteratorRegistry.java:[817,18] Caught exceptions should not be ignored
icu4j/main/translit/src/main/java/com/ibm/icu/text/TransliteratorRegistry.java:[818,18] Caught exceptions should not be ignored
icu4j/main/translit/src/main/java/com/ibm/icu/text/AnyTransliterator.java:[178,14] Caught exceptions should not be ignored
icu4j/main/translit/src/main/java/com/ibm/icu/text/AnyTransliterator.java:[186,18] Caught exceptions should not be ignored
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetICU.java:[238,10] Caught exceptions should not be ignored
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetICU.java:[239,10] Caught exceptions should not be ignored
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetICU.java:[240,10] Caught exceptions should not be ignored
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetICU.java:[241,10] Caught exceptions should not be ignored
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetProviderICU.java:[70,10] Caught exceptions should not be ignored
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetProviderICU.java:[71,10] Caught exceptions should not be ignored
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetProviderICU.java:[229,10] Caught exceptions should not be ignored
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetProviderICU.java:[282,14] Caught exceptions should not be ignored
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetProviderICU.java:[283,14] Caught exceptions should not be ignored
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/number/NumberFormatterApiTest.java:[6954,10] Caught exceptions should not be ignored
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/Selection.java:[156,10] Caught exceptions should not be ignored
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/Demo.java:[777,18] Caught exceptions should not be ignored
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/Demo.java:[787,18] Caught exceptions should not be ignored
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/docs/CodeMangler.java:[267,14] Caught exceptions should not be ignored
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/PerfTest.java:[773,10] Caught exceptions should not be ignored
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/PerfTest.java:[795,14] Caught exceptions should not be ignored
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/PerfTest.java:[830,14] Caught exceptions should not be ignored
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/CollationPerformanceTest.java:[1083,10] Caught exceptions should not be ignored

[WARNING] EmptyTopLevelDeclaration (3) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/util/BytesTrie.java:[1223,0] Empty top-level type declarations should be omitted
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/text/FilteredNormalizer2.java:[320,0] Empty top-level type declarations should be omitted
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/text/RBBIRuleParseTable.java:[291,0] Empty top-level type declarations should be omitted
Did you mean to remove this line?

[ICU_PRIORITY_2] EqualsGetClass [FragileCode] (18) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/impl/Trie2.java:[334,23] Prefer instanceof to getClass when implementing Object#equals.
Did you mean
if (!(other instanceof Range)) {
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[1147,19] Prefer instanceof to getClass when implementing Object#equals.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[2269,19] Prefer instanceof to getClass when implementing Object#equals.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[1088,19] Prefer instanceof to getClass when implementing Object#equals.
Did you mean
if (!(obj instanceof TimeZone)) return false;
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1914,19] Prefer instanceof to getClass when implementing Object#equals.
Did you mean
if (!(obj instanceof DateFormat)) return false;
icu4j/main/core/src/main/java/com/ibm/icu/util/SimpleTimeZone.java:[1212,19] Prefer instanceof to getClass when implementing Object#equals.
Did you mean
if (!(obj instanceof SimpleTimeZone)) return false;
icu4j/main/core/src/main/java/com/ibm/icu/impl/Relation.java:[107,19] Prefer instanceof to getClass when implementing Object#equals.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/text/MessageFormat.java:[1439,19] Prefer instanceof to getClass when implementing Object#equals.
Did you mean
if (!(obj instanceof MessageFormat)) return false;
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[1578,19] Prefer instanceof to getClass when implementing Object#equals.
Did you mean
if (!(obj instanceof DateFormatSymbols)) return false;
icu4j/main/core/src/main/java/com/ibm/icu/text/PluralFormat.java:[893,19] Prefer instanceof to getClass when implementing Object#equals.
Did you mean
if (!(rhs instanceof PluralFormat)) {
icu4j/main/core/src/main/java/com/ibm/icu/impl/ResourceBundleWrapper.java:[50,23] Prefer instanceof to getClass when implementing Object#equals.
Did you mean
if (!(o instanceof BundleCacheKey)) {
icu4j/main/core/src/main/java/com/ibm/icu/impl/SimpleFilteredSentenceBreakIterator.java:[179,19] Prefer instanceof to getClass when implementing Object#equals.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/XCldrStub.java:[124,23] Prefer instanceof to getClass when implementing Object#equals.
Did you mean
|| (obj instanceof Multimap
icu4j/main/core/src/main/java/com/ibm/icu/text/NFSubstitution.java:[218,19] Prefer instanceof to getClass when implementing Object#equals.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/text/SelectFormat.java:[326,19] Prefer instanceof to getClass when implementing Object#equals.
Did you mean
if (!(obj instanceof SelectFormat)) {
icu4j/main/core/src/main/java/com/ibm/icu/util/StringTrieBuilder.java:[195,23] Prefer instanceof to getClass when implementing Object#equals.
Did you mean
return this == other || other instanceof Node;
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationIterator.java:[221,19] Prefer instanceof to getClass when implementing Object#equals.
Did you mean to remove this line?
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[314,19] Prefer instanceof to getClass when implementing Object#equals.
Did you mean
return this == obj || (obj instanceof Collator);

[ERROR] EqualsHashCode [FragileCode] (8) 🔗

File and line number Message
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/TestCase.java:[249,19] Classes that override equals should also override hashCode.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[1475,23] Classes that override equals should also override hashCode.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateTimeGeneratorTest.java:[855,23] Classes that override equals should also override hashCode.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[212,23] Classes that override equals should also override hashCode.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/IntlTestDecimalFormatAPIC.java:[532,23] Classes that override equals should also override hashCode.
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/Selection.java:[45,19] Classes that override equals should also override hashCode.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/translit/TransliteratorInputMethod.java:[730,19] Classes that override equals should also override hashCode.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/translit/UnicodeSetCloseOver.java:[232,43] Classes that override equals should also override hashCode.

[WARNING] EqualsIncompatibleType (31) 🔗

File and line number Message
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7658,49] Calling equals on incompatible types BigDecimal and String
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarTestFmwk.java:[142,28] Calling equals on incompatible types TestCase and Calendar
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[2726,23] Calling equals on incompatible types DateIntervalInfo and String
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[2731,23] Calling equals on incompatible types DateIntervalInfo and int
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[2736,23] Calling equals on incompatible types DateIntervalInfo and double
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[2979,21] Calling equals on incompatible types PatternInfo and String
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[2984,21] Calling equals on incompatible types PatternInfo and int
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[2989,21] Calling equals on incompatible types PatternInfo and double
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3000,21] Calling equals on incompatible types DateInterval and String
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/PluralFormatTest.java:[330,22] Calling equals on incompatible types CurrencyPluralInfo and int
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/PluralFormatTest.java:[334,22] Calling equals on incompatible types CurrencyPluralInfo and double
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/PluralFormatTest.java:[338,22] Calling equals on incompatible types CurrencyPluralInfo and String
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/RBBITest.java:[319,23] Calling equals on incompatible types RuleBasedBreakIterator and int
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/RBBITest.java:[324,23] Calling equals on incompatible types RuleBasedBreakIterator and double
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/RBBITest.java:[329,23] Calling equals on incompatible types RuleBasedBreakIterator and String
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationMiscTest.java:[2807,21] Calling equals on incompatible types CollationKey and String
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationMiscTest.java:[2812,21] Calling equals on incompatible types CollationKey and int
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationMiscTest.java:[2817,21] Calling equals on incompatible types CollationKey and double
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[1888,56] Calling equals on incompatible types NumberFormat and String
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/RbnfTest.java:[1475,23] Calling equals on incompatible types RuleBasedNumberFormat and String
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/RbnfTest.java:[1476,30] Calling equals on incompatible types RuleBasedNumberFormat and char
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/RbnfTest.java:[1478,30] Calling equals on incompatible types RuleBasedNumberFormat and int
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/RbnfTest.java:[1479,30] Calling equals on incompatible types RuleBasedNumberFormat and int
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/RbnfTest.java:[1480,30] Calling equals on incompatible types RuleBasedNumberFormat and int
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/RbnfTest.java:[1481,30] Calling equals on incompatible types RuleBasedNumberFormat and double
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/RbnfTest.java:[1482,30] Calling equals on incompatible types RuleBasedNumberFormat and double
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/RbnfTest.java:[1483,30] Calling equals on incompatible types RuleBasedNumberFormat and double
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestStringPrep.java:[311,23] Calling equals on incompatible types StringPrepParseException and int
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestStringPrep.java:[316,23] Calling equals on incompatible types StringPrepParseException and double
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestStringPrep.java:[321,23] Calling equals on incompatible types StringPrepParseException and String
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/CurrencyTest.java:[55,22] Calling equals on incompatible types Currency and String

[ICU_PRIORITY_2] EqualsUnsafeCast (14) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/text/UnicodeSet.java:[2446,30] The contract of #equals states that it should return false for incompatible types, while this implementation may throw ClassCastException.
Did you mean
if (!(o instanceof UnicodeSet)) { return false; }UnicodeSet that = (UnicodeSet) o;
icu4j/main/core/src/main/java/com/ibm/icu/impl/ImmutableEntry.java:[43,26] The contract of #equals states that it should return false for incompatible types, while this implementation may throw ClassCastException.
Did you mean
if (!(o instanceof Map.Entry)) { return false; }Map.Entry e = (Map.Entry) o;
icu4j/main/core/src/main/java/com/ibm/icu/impl/Row.java:[130,43] The contract of #equals states that it should return false for incompatible types, while this implementation may throw ClassCastException.
Did you mean
if (!(other instanceof Row<C0, C1, C2, C3, C4>)) { return false; }Row<C0, C1, C2, C3, C4> that = (Row<C0, C1, C2, C3, C4>) other;
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[93,30] The contract of #equals states that it should return false for incompatible types, while this implementation may throw ClassCastException.
Did you mean
if (!(other instanceof UnicodeMap)) { return false; }UnicodeMap that = (UnicodeMap) other;
icu4j/main/core/src/main/java/com/ibm/icu/util/LocalePriorityList.java:[199,44] The contract of #equals states that it should return false for incompatible types, while this implementation may throw ClassCastException.
Did you mean
if (!(o instanceof LocalePriorityList)) { return false; }final LocalePriorityList that = (LocalePriorityList) o;
icu4j/main/core/src/main/java/com/ibm/icu/text/RuleBasedBreakIterator.java:[195,43] The contract of #equals states that it should return false for incompatible types, while this implementation may throw ClassCastException.
Did you mean
if (!(that instanceof RuleBasedBreakIterator)) { return false; }RuleBasedBreakIterator other = (RuleBasedBreakIterator) that;
icu4j/main/core/src/main/java/com/ibm/icu/util/ByteArrayWrapper.java:[217,36] The contract of #equals states that it should return false for incompatible types, while this implementation may throw ClassCastException.
Did you mean
if (!(other instanceof ByteArrayWrapper)) { return false; }ByteArrayWrapper that = (ByteArrayWrapper) other;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateTimeGeneratorTest.java:[856,30] The contract of #equals states that it should return false for incompatible types, while this implementation may throw ClassCastException.
Did you mean
if (!(that instanceof DateOrder)) { return false; }DateOrder other = (DateOrder) that;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[213,34] The contract of #equals states that it should return false for incompatible types, while this implementation may throw ClassCastException.
Did you mean
if (!(o instanceof ZoneDescriptor)) { return false; }ZoneDescriptor that = (ZoneDescriptor) o;
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/LocaleDataTest.java:[223,30] The contract of #equals states that it should return false for incompatible types, while this implementation may throw ClassCastException.
Did you mean
if (!(other instanceof ExemplarGroup)) { return false; }ExemplarGroup o = (ExemplarGroup) other;
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/Selection.java:[46,27] The contract of #equals states that it should return false for incompatible types, while this implementation may throw ClassCastException.
Did you mean
if (!(other instanceof Selection)) { return false; }Selection other2 = (Selection) other;
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/docs/APIInfo.java:[85,27] The contract of #equals states that it should return false for incompatible types, while this implementation may throw ClassCastException.
Did you mean
if (!(rhs instanceof APIInfo)) { return false; }APIInfo that = (APIInfo) rhs;
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/charsetdet/mbcs/BIG5Tool.java:[247,21] The contract of #equals states that it should return false for incompatible types, while this implementation may throw ClassCastException.
Did you mean
if (!(other instanceof ChEl)) { return false; }ChEl o = (ChEl) other;
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/charsetdet/mbcs/EUCTool.java:[249,21] The contract of #equals states that it should return false for incompatible types, while this implementation may throw ClassCastException.
Did you mean
if (!(other instanceof ChEl)) { return false; }ChEl o = (ChEl) other;

[WARNING] EscapedEntity (2) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[360,38] HTML entities in @code/@literal tags will appear literally in the rendered javadoc.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[378,40] HTML entities in @code/@literal tags will appear literally in the rendered javadoc.

[WARNING] ExtendsObject (3) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/impl/SortedSetRelation.java:[59,29] `T extends Object` is redundant (unless you are using the Checker Framework).
Did you mean
public static <T extends @NonNull Object & Comparable<? super T>> boolean hasRelation(
icu4j/main/core/src/main/java/com/ibm/icu/impl/SortedSetRelation.java:[137,29] `T extends Object` is redundant (unless you are using the Checker Framework).
Did you mean
public static <T extends @NonNull Object & Comparable<? super T>> SortedSet<? extends T> doOperation(
icu4j/main/core/src/main/java/com/ibm/icu/lang/CharSequences.java:[211,35] `T extends Object` is redundant (unless you are using the Checker Framework).
Did you mean
public static final <T extends @NonNull Object> boolean equals(T a, T b) {

[ICU_PRIORITY_2] FallThrough (3) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/impl/PatternTokenizer.java:[331,16] Switch case has 'fall through' comment, but execution cannot fall through from the previous case
icu4j/main/core/src/main/java/com/ibm/icu/impl/PatternTokenizer.java:[384,16] Switch case has 'fall through' comment, but execution cannot fall through from the previous case
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/RoundTripTest.java:[1391,20] Execution may fall through from the previous case; add a `// fall through` comment before this line if it was deliberate

[ICU_PRIORITY_2] Finalize (1) 🔗

File and line number Message
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/SharedObject.java:[152,23] Do not override finalize

[ICU_PRIORITY_1] Finally [FragileCode] (3) 🔗

File and line number Message
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/DataDrivenTestHelper.java:[156,20] If you return or throw from a finally, then values returned or thrown from the try-catch block will be ignored. Consider using try-with-resources instead.
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationThaiTest.java:[203,16] If you return or throw from a finally, then values returned or thrown from the try-catch block will be ignored. Consider using try-with-resources instead.
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/docs/APIData.java:[105,20] If you return or throw from a finally, then values returned or thrown from the try-catch block will be ignored. Consider using try-with-resources instead.

[ICU_PRIORITY_2] FloatingPointLiteralPrecision [Style] (120) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/impl/CalendarAstronomer.java:[173,37] Floating point literal loses precision
Did you mean
private static final double PI = 3.141592653589793;
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/DecimalQuantity_AbstractBCD.java:[498,50] Floating point literal loses precision
Did you mean
int fracLength = (int) ((52 - exponent) / 3.321928094887362);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormatAPIC.java:[46,24] Floating point literal loses precision
Did you mean
Number numObj = 3.141592653589793;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/NumberFormatRoundTripTest.java:[102,19] Floating point literal loses precision
Did you mean
_test(fmt, 9.223372036854776E+18);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/NumberFormatRoundTripTest.java:[103,20] Floating point literal loses precision
Did you mean
_test(fmt, -9.223372036854776E+18);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/NumberFormatRoundTripTest.java:[133,36] Floating point literal loses precision
Did you mean
_test(fmt, randomDouble(9.9E-324));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/number/ExhaustiveNumberTest.java:[138,12] Floating point literal loses precision
Did you mean
1.6510874949062216E+18,
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/number/ExhaustiveNumberTest.java:[139,12] Floating point literal loses precision
Did you mean
2.2078170776367188,
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/number/ExhaustiveNumberTest.java:[140,12] Floating point literal loses precision
Did you mean
1.8183517456054688,
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/number/ExhaustiveNumberTest.java:[141,12] Floating point literal loses precision
Did you mean
3.9417190551757812,
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/number/ExhaustiveNumberTest.java:[142,12] Floating point literal loses precision
Did you mean
3.7386093139648438,
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/number/ExhaustiveNumberTest.java:[143,12] Floating point literal loses precision
Did you mean
3.9677352905273438,
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/number/ExhaustiveNumberTest.java:[144,12] Floating point literal loses precision
Did you mean
1.3280258178710938,
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/number/ExhaustiveNumberTest.java:[145,12] Floating point literal loses precision
Did you mean
3.9209671020507812,
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/number/ExhaustiveNumberTest.java:[146,12] Floating point literal loses precision
Did you mean
1.0152359008789062,
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/number/ExhaustiveNumberTest.java:[147,12] Floating point literal loses precision
Did you mean
1.3352279663085938,
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/number/ExhaustiveNumberTest.java:[148,12] Floating point literal loses precision
Did you mean
1.3445205688476562,
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/number/ExhaustiveNumberTest.java:[149,12] Floating point literal loses precision
Did you mean
2.8791275024414062,
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/number/ExhaustiveNumberTest.java:[150,12] Floating point literal loses precision
Did you mean
3.6958389282226562,
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/number/ExhaustiveNumberTest.java:[151,12] Floating point literal loses precision
Did you mean
1.8453445434570312,
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/number/ExhaustiveNumberTest.java:[152,12] Floating point literal loses precision
Did you mean
3.7939529418945312,
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/number/ExhaustiveNumberTest.java:[153,12] Floating point literal loses precision
Did you mean
3.2114028930664062,
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/number/ExhaustiveNumberTest.java:[154,12] Floating point literal loses precision
Did you mean
2.5659713745117188,
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/number/ExhaustiveNumberTest.java:[155,12] Floating point literal loses precision
Did you mean
0.9651565551757812,
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/number/ExhaustiveNumberTest.java:[156,12] Floating point literal loses precision
Did you mean
2.7000045776367188,
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/number/ExhaustiveNumberTest.java:[157,12] Floating point literal loses precision
Did you mean
0.7670974731445312,
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/number/ExhaustiveNumberTest.java:[158,12] Floating point literal loses precision
Did you mean
1.7804489135742188,
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/number/ExhaustiveNumberTest.java:[159,12] Floating point literal loses precision
Did you mean
2.6248397827148438,
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/number/ExhaustiveNumberTest.java:[160,12] Floating point literal loses precision
Did you mean
1.3052902221679688,
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/number/ExhaustiveNumberTest.java:[161,12] Floating point literal loses precision
Did you mean
3.8349227905273438,
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/number/ExhaustiveNumberTest.java:[167,13] Floating point literal loses precision
Did you mean
-5.074790912493E-312,
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/number/ExhaustiveNumberTest.java:[168,12] Floating point literal loses precision
Did you mean
8.3602530019753E-311,
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[59,9] Floating point literal loses precision
Did you mean
{1.2345679E+10f, "12B"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[60,9] Floating point literal loses precision
Did you mean
{1.2345679E+11f, "120B"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[61,9] Floating point literal loses precision
Did you mean
{1.234568E+12f, "1.2T"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[62,9] Floating point literal loses precision
Did you mean
{1.2345679E+13f, "12T"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[63,9] Floating point literal loses precision
Did you mean
{1.2345679E+14f, "120T"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[64,9] Floating point literal loses precision
Did you mean
{1.2345679E+19f, "12,000,000T"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[78,9] Floating point literal loses precision
Did you mean
{1.2345679E+10f, "12\u00a0млрд."},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[79,9] Floating point literal loses precision
Did you mean
{1.2345679E+11f, "120\u00a0млрд."},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[80,9] Floating point literal loses precision
Did you mean
{1.234568E+12f, "1,2\u00a0бил."},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[81,9] Floating point literal loses precision
Did you mean
{1.2345679E+13f, "12\u00a0бил."},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[82,9] Floating point literal loses precision
Did you mean
{1.2345679E+14f, "120\u00a0бил."},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[83,9] Floating point literal loses precision
Did you mean
{1.234568E+15f, "1200\u00a0бил."},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[99,9] Floating point literal loses precision
Did you mean
{1.2345679E+10f, "12 милијарди"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[100,9] Floating point literal loses precision
Did you mean
{2.0890124E+10f, "21 милијарда"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[101,9] Floating point literal loses precision
Did you mean
{2.1890124E+10f, "22 милијарде"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[102,9] Floating point literal loses precision
Did you mean
{1.2345679E+11f, "120 милијарди"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[103,9] Floating point literal loses precision
Did you mean
{1.234568E+12f, "1,2 билиона"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[104,9] Floating point literal loses precision
Did you mean
{1.2345679E+13f, "12 билиона"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[105,9] Floating point literal loses precision
Did you mean
{1.2345679E+14f, "120 билиона"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[106,9] Floating point literal loses precision
Did you mean
{1.234568E+15f, "1200 билиона"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[122,10] Floating point literal loses precision
Did you mean
{-1.2345679E+10f, "-12 милијарди"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[123,10] Floating point literal loses precision
Did you mean
{-2.0890124E+10f, "-21 милијарда"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[124,10] Floating point literal loses precision
Did you mean
{-2.1890124E+10f, "-22 милијарде"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[125,10] Floating point literal loses precision
Did you mean
{-1.2345679E+11f, "-120 милијарди"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[126,10] Floating point literal loses precision
Did you mean
{-1.234568E+12f, "-1,2 билиона"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[127,10] Floating point literal loses precision
Did you mean
{-1.2345679E+13f, "-12 билиона"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[128,10] Floating point literal loses precision
Did you mean
{-1.2345679E+14f, "-120 билиона"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[129,10] Floating point literal loses precision
Did you mean
{-1.234568E+15f, "-1200 билиона"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[141,9] Floating point literal loses precision
Did you mean
{1.2345679E+8f, "1.2億"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[142,9] Floating point literal loses precision
Did you mean
{1.234568E+9f, "12億"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[143,9] Floating point literal loses precision
Did you mean
{1.2345679E+10f, "120億"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[144,9] Floating point literal loses precision
Did you mean
{1.2345679E+11f, "1200億"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[145,9] Floating point literal loses precision
Did you mean
{1.234568E+12f, "1.2兆"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[146,9] Floating point literal loses precision
Did you mean
{1.2345679E+13f, "12兆"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[147,9] Floating point literal loses precision
Did you mean
{1.2345679E+14f, "120兆"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[148,9] Floating point literal loses precision
Did you mean
{1.234568E+15f, "1200兆"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[149,9] Floating point literal loses precision
Did you mean
{1.2345678E+16f, "1.2京"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[150,9] Floating point literal loses precision
Did you mean
{1.2345679E+17f, "12京"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[151,9] Floating point literal loses precision
Did you mean
{1.234568E+18f, "120京"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[152,9] Floating point literal loses precision
Did you mean
{1.2345679E+19f, "1200京"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[164,9] Floating point literal loses precision
Did you mean
{1.2345679E+8f, "1.2亿"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[165,9] Floating point literal loses precision
Did you mean
{1.234568E+9f, "12亿"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[166,9] Floating point literal loses precision
Did you mean
{1.2345679E+10f, "120亿"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[167,9] Floating point literal loses precision
Did you mean
{1.2345679E+11f, "1200亿"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[168,9] Floating point literal loses precision
Did you mean
{1.234568E+12f, "1.2万亿"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[169,9] Floating point literal loses precision
Did you mean
{1.2345679E+13f, "12万亿"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[170,9] Floating point literal loses precision
Did you mean
{1.2345679E+14f, "120万亿"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[182,28] Floating point literal loses precision
Did you mean
{new CurrencyAmount(1.2345679E+8f, Currency.getInstance("CNY")), "¥1.2亿"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[183,28] Floating point literal loses precision
Did you mean
{new CurrencyAmount(1.234568E+9f, Currency.getInstance("CNY")), "¥12亿"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[184,28] Floating point literal loses precision
Did you mean
{new CurrencyAmount(1.2345679E+10f, Currency.getInstance("CNY")), "¥120亿"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[185,28] Floating point literal loses precision
Did you mean
{new CurrencyAmount(1.2345679E+11f, Currency.getInstance("CNY")), "¥1200亿"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[186,28] Floating point literal loses precision
Did you mean
{new CurrencyAmount(1.234568E+12f, Currency.getInstance("CNY")), "¥1.2万亿"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[187,28] Floating point literal loses precision
Did you mean
{new CurrencyAmount(1.2345679E+13f, Currency.getInstance("CNY")), "¥12万亿"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[188,28] Floating point literal loses precision
Did you mean
{new CurrencyAmount(1.2345679E+14f, Currency.getInstance("CNY")), "¥120万亿"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[199,28] Floating point literal loses precision
Did you mean
{new CurrencyAmount(1.2345679E+8f, Currency.getInstance("EUR")), "120 Mio. €"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[200,28] Floating point literal loses precision
Did you mean
{new CurrencyAmount(1.234568E+9f, Currency.getInstance("EUR")), "1,2 Mrd. €"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[201,28] Floating point literal loses precision
Did you mean
{new CurrencyAmount(1.2345679E+10f, Currency.getInstance("EUR")), "12 Mrd. €"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[202,28] Floating point literal loses precision
Did you mean
{new CurrencyAmount(1.2345679E+11f, Currency.getInstance("EUR")), "120 Mrd. €"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[203,28] Floating point literal loses precision
Did you mean
{new CurrencyAmount(1.234568E+12f, Currency.getInstance("EUR")), "1,2 Bio. €"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[204,28] Floating point literal loses precision
Did you mean
{new CurrencyAmount(1.2345679E+13f, Currency.getInstance("EUR")), "12 Bio. €"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[205,28] Floating point literal loses precision
Did you mean
{new CurrencyAmount(1.2345679E+14f, Currency.getInstance("EUR")), "120 Bio. €"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[216,28] Floating point literal loses precision
Did you mean
{new CurrencyAmount(1.2345679E+8f, Currency.getInstance("USD")), "$120M"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[217,28] Floating point literal loses precision
Did you mean
{new CurrencyAmount(1.234568E+9f, Currency.getInstance("USD")), "$1.2B"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[218,28] Floating point literal loses precision
Did you mean
{new CurrencyAmount(1.2345679E+10f, Currency.getInstance("USD")), "$12B"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[219,28] Floating point literal loses precision
Did you mean
{new CurrencyAmount(1.2345679E+11f, Currency.getInstance("USD")), "$120B"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[220,28] Floating point literal loses precision
Did you mean
{new CurrencyAmount(1.234568E+12f, Currency.getInstance("USD")), "$1.2T"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[221,28] Floating point literal loses precision
Did you mean
{new CurrencyAmount(1.2345679E+13f, Currency.getInstance("USD")), "$12T"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[222,28] Floating point literal loses precision
Did you mean
{new CurrencyAmount(1.2345679E+14f, Currency.getInstance("USD")), "$120T"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[234,9] Floating point literal loses precision
Did you mean
{1.2345679E+8f, "120M"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[235,9] Floating point literal loses precision
Did you mean
{1.234568E+9f, "1.2B"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[236,9] Floating point literal loses precision
Did you mean
{1.2345679E+10f, "12B"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[237,9] Floating point literal loses precision
Did you mean
{1.2345679E+11f, "120B"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[238,9] Floating point literal loses precision
Did you mean
{1.234568E+12f, "1.2T"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[239,9] Floating point literal loses precision
Did you mean
{1.2345679E+13f, "12T"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[240,9] Floating point literal loses precision
Did you mean
{1.2345679E+19f, "12,000,000T"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[255,9] Floating point literal loses precision
Did you mean
{1.2712346E+9f, "1,3\u00a0mld."},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[256,9] Floating point literal loses precision
Did you mean
{1.2712346E+10f, "13\u00a0mld."},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[257,9] Floating point literal loses precision
Did you mean
{1.2712346E+11f, "130\u00a0mld."},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[258,9] Floating point literal loses precision
Did you mean
{1.2712346E+12f, "1,3\u00a0bil."},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[259,9] Floating point literal loses precision
Did you mean
{1.2712346E+13f, "13\u00a0bil."},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[260,9] Floating point literal loses precision
Did you mean
{1.2712346E+14f, "130\u00a0bil."},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[278,10] Floating point literal loses precision
Did you mean
{-1.2345679E+8f, "-120M"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[279,10] Floating point literal loses precision
Did you mean
{-1.234568E+9f, "-1.2B"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[280,10] Floating point literal loses precision
Did you mean
{-1.2345679E+10f, "-12B"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[281,10] Floating point literal loses precision
Did you mean
{-1.2345679E+11f, "-120B"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[282,10] Floating point literal loses precision
Did you mean
{-1.234568E+12f, "-1.2T"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[283,10] Floating point literal loses precision
Did you mean
{-1.2345679E+13f, "-12T"},
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/CompactDecimalFormatTest.java:[284,10] Floating point literal loses precision
Did you mean
{-1.2345679E+19f, "-12,000,000T"},

[WARNING] HidingField (1) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/impl/Trie2Writable.java:[1188,16] Hiding fields of superclasses may cause confusion and errors. This field is hiding a field of the same name in superclass: Trie2

[ERROR] IdentityBinaryExpression (1) 🔗

File and line number Message
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[4708,25] A binary expression where both operands are the same is usually incorrect; the value of this expression is equivalent to `false`.

[WARNING] ImmutableEnumChecker (12) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/impl/CalType.java:[31,11] enums should be immutable: 'CalType' has non-final field 'id'
Did you mean
final String id;
icu4j/main/core/src/main/java/com/ibm/icu/util/BasicTimeZone.java:[734,20] enums should be immutable: 'LocalOption' has non-final field 'flagVal'
Did you mean
private final int flagVal;
icu4j/main/core/src/main/java/com/ibm/icu/impl/TimeZoneGenericNames.java:[58,17] enums should be immutable: 'GenericNameType' has non-final field '_fallbackTypeOf'
Did you mean
final String[] _fallbackTypeOf;
icu4j/main/core/src/main/java/com/ibm/icu/impl/TimeZoneGenericNames.java:[88,15] enums should be immutable: 'Pattern' has non-final field '_key'
Did you mean
final String _key;
icu4j/main/core/src/main/java/com/ibm/icu/impl/TimeZoneGenericNames.java:[89,15] enums should be immutable: 'Pattern' has non-final field '_defaultVal'
Did you mean
final String _defaultVal;
icu4j/main/core/src/main/java/com/ibm/icu/text/TimeZoneFormat.java:[281,23] enums should be immutable: 'GMTOffsetPatternType' has non-final field '_defaultPattern'
Did you mean
private final String _defaultPattern;
icu4j/main/core/src/main/java/com/ibm/icu/text/TimeZoneFormat.java:[282,23] enums should be immutable: 'GMTOffsetPatternType' has non-final field '_required'
Did you mean
private final String _required;
icu4j/main/core/src/main/java/com/ibm/icu/text/TimeZoneFormat.java:[283,24] enums should be immutable: 'GMTOffsetPatternType' has non-final field '_isPositive'
Did you mean
private final boolean _isPositive;
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/KeyTypeData.java:[108,27] enums should be immutable: 'SpecialType' has non-final field 'handler'
Did you mean
final SpecialTypeHandler handler;
icu4j/main/core/src/main/java/com/ibm/icu/text/RelativeDateTimeFormatter.java:[1370,25] enums should be immutable: 'DateTimeUnit' has non-final field 'relUnit'
Did you mean
final RelativeUnit relUnit;
icu4j/main/core/src/main/java/com/ibm/icu/text/RelativeDateTimeFormatter.java:[1371,25] enums should be immutable: 'DateTimeUnit' has non-final field 'absUnit'
Did you mean
final AbsoluteUnit absUnit;
icu4j/main/core/src/main/java/com/ibm/icu/util/IslamicCalendar.java:[1495,23] enums should be immutable: 'CalculationType' has non-final field 'bcpType'
Did you mean
private final String bcpType;

[WARNING] InconsistentCapitalization (39) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/util/MeasureUnit.java:[887,58] Found the field 'subType' with the same name as the parameter 'subtype' but with different capitalization.
Did you mean
public static MeasureUnit getUnit(String type, String subType) {
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[748,47] Found the field 'ID' with the same name as the parameter 'id' but with different capitalization.
Did you mean
private static TimeZone getTimeZone(String ID, int type, boolean frozen) {
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[777,53] Found the field 'ID' with the same name as the parameter 'id' but with different capitalization.
Did you mean
static BasicTimeZone getFrozenICUTimeZone(String ID, boolean trySystem) {
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[890,48] Found the field 'ID' with the same name as the parameter 'id' but with different capitalization.
Did you mean
public static int countEquivalentIDs(String ID) {
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[911,48] Found the field 'ID' with the same name as the parameter 'id' but with different capitalization.
Did you mean
public static String getEquivalentID(String ID, int index) {
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[1128,47] Found the field 'ID' with the same name as the parameter 'id' but with different capitalization.
Did you mean
public static String getCanonicalID(String ID) {
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[1144,47] Found the field 'ID' with the same name as the parameter 'id' but with different capitalization.
Did you mean
public static String getCanonicalID(String ID, boolean[] isSystemID) {
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[1191,42] Found the field 'ID' with the same name as the parameter 'id' but with different capitalization.
Did you mean
public static String getIanaID(String ID) {
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[1215,42] Found the field 'ID' with the same name as the parameter 'id' but with different capitalization.
Did you mean
public static String getRegion(String ID) {
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[1250,45] Found the field 'ID' with the same name as the parameter 'id' but with different capitalization.
Did you mean
public static String getWindowsID(String ID) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestData.java:[252,24] Found the field 'testLabel' with the same name as the parameter 'testlabel' but with different capitalization.
Did you mean
boolean testLabel) {
icu4j/main/currdata/src/main/java/com/ibm/icu/impl/ICUCurrencyMetaInfo.java:[205,23] Found the field 'Region' with the same name as the parameter 'region' but with different capitalization.
Did you mean
String Region, String currency, long from, long to, int priority, boolean tender) {
icu4j/main/currdata/src/main/java/com/ibm/icu/impl/ICUCurrencyMetaInfo.java:[205,38] Found the field 'Currency' with the same name as the parameter 'currency' but with different capitalization.
Did you mean
String region, String Currency, long from, long to, int priority, boolean tender) {
icu4j/main/currdata/src/main/java/com/ibm/icu/impl/ICUCurrencyMetaInfo.java:[205,90] Found the field 'Tender' with the same name as the parameter 'tender' but with different capitalization.
Did you mean
String region, String currency, long from, long to, int priority, boolean Tender) {
icu4j/main/currdata/src/main/java/com/ibm/icu/impl/ICUCurrencyMetaInfo.java:[225,23] Found the field 'Region' with the same name as the parameter 'region' but with different capitalization.
Did you mean
String Region, String currency, long from, long to, int priority, boolean tender) {
icu4j/main/currdata/src/main/java/com/ibm/icu/impl/ICUCurrencyMetaInfo.java:[225,38] Found the field 'Currency' with the same name as the parameter 'currency' but with different capitalization.
Did you mean
String region, String Currency, long from, long to, int priority, boolean tender) {
icu4j/main/currdata/src/main/java/com/ibm/icu/impl/ICUCurrencyMetaInfo.java:[225,90] Found the field 'Tender' with the same name as the parameter 'tender' but with different capitalization.
Did you mean
String region, String currency, long from, long to, int priority, boolean Tender) {
icu4j/main/currdata/src/main/java/com/ibm/icu/impl/ICUCurrencyMetaInfo.java:[245,23] Found the field 'Region' with the same name as the parameter 'region' but with different capitalization.
Did you mean
String Region, String currency, long from, long to, int priority, boolean tender) {
icu4j/main/currdata/src/main/java/com/ibm/icu/impl/ICUCurrencyMetaInfo.java:[245,38] Found the field 'Currency' with the same name as the parameter 'currency' but with different capitalization.
Did you mean
String region, String Currency, long from, long to, int priority, boolean tender) {
icu4j/main/currdata/src/main/java/com/ibm/icu/impl/ICUCurrencyMetaInfo.java:[245,90] Found the field 'Tender' with the same name as the parameter 'tender' but with different capitalization.
Did you mean
String region, String currency, long from, long to, int priority, boolean Tender) {
icu4j/main/currdata/src/main/java/com/ibm/icu/impl/ICUCurrencyMetaInfo.java:[285,23] Found the field 'Region' with the same name as the parameter 'region' but with different capitalization.
Did you mean
String Region, String currency, long from, long to, int priority, boolean tender);
icu4j/main/currdata/src/main/java/com/ibm/icu/impl/ICUCurrencyMetaInfo.java:[285,38] Found the field 'Currency' with the same name as the parameter 'currency' but with different capitalization.
Did you mean
String region, String Currency, long from, long to, int priority, boolean tender);
icu4j/main/currdata/src/main/java/com/ibm/icu/impl/ICUCurrencyMetaInfo.java:[285,90] Found the field 'Tender' with the same name as the parameter 'tender' but with different capitalization.
Did you mean
String region, String currency, long from, long to, int priority, boolean Tender);
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/search/SearchTest.java:[48,23] Found the field 'PATTERN' with the same name as the parameter 'pattern' but with different capitalization.
Did you mean
String PATTERN,
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/search/SearchTest.java:[50,20] Found the field 'STRENGTH' with the same name as the parameter 'strength' but with different capitalization.
Did you mean
int STRENGTH,
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/search/SearchTest.java:[86,19] Found the field 'PATTERN' with the same name as the parameter 'pattern' but with different capitalization.
Did you mean
String PATTERN,
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/search/SearchTest.java:[88,16] Found the field 'STRENGTH' with the same name as the parameter 'strength' but with different capitalization.
Did you mean
int STRENGTH,
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/search/SearchTest.java:[1796,41] Found the field 'COLLATOR' with the same name as the parameter 'collator' but with different capitalization.
Did you mean
RuleBasedCollator getCollator(String COLLATOR) {
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/search/SearchTest.java:[1892,83] Found the field 'OVERLAP' with the same name as the parameter 'overlap' but with different capitalization.
Did you mean
boolean assertEqualWithAttribute(SearchData search, boolean canonical, boolean OVERLAP) {
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/search/SearchTest.java:[3283,85] Found the field 'PATTERN' with the same name as the parameter 'pattern' but with different capitalization.
Did you mean
TestSearch(StringCharacterIterator target, BreakIterator breaker, String PATTERN) {
icu4j/main/translit/src/main/java/com/ibm/icu/text/Transliterator.java:[1337,38] Found the field 'ID' with the same name as the parameter 'id' but with different capitalization.
Did you mean
protected final void setID(String ID) {
icu4j/main/translit/src/main/java/com/ibm/icu/text/Transliterator.java:[1367,47] Found the field 'ID' with the same name as the parameter 'id' but with different capitalization.
Did you mean
public static String getDisplayName(String ID, Locale inLocale) {
icu4j/main/translit/src/main/java/com/ibm/icu/text/Transliterator.java:[1386,47] Found the field 'ID' with the same name as the parameter 'id' but with different capitalization.
Did you mean
public static String getDisplayName(String ID, ULocale inLocale) {
icu4j/main/translit/src/main/java/com/ibm/icu/text/Transliterator.java:[1549,50] Found the field 'ID' with the same name as the parameter 'id' but with different capitalization.
Did you mean
static Transliterator getBasicInstance(String ID, String canonID) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/IntDiffer.java:[25,25] Found the field 'STACKSIZE' with the same name as the parameter 'stackSize' but with different capitalization.
Did you mean
public IntDiffer(int STACKSIZE, int matchCount) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/localeconverter/XLIFF2ICUConverter.java:[592,52] Found the field 'sourceFileName' with the same name as the parameter 'sourceFilename' but with different capitalization.
Did you mean
private void writeResource(Resource set, String sourceFileName, String targetFilename) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/localeconverter/XLIFF2ICUConverter.java:[592,75] Found the field 'targetFileName' with the same name as the parameter 'targetFilename' but with different capitalization.
Did you mean
private void writeResource(Resource set, String sourceFilename, String targetFileName) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/timezone/ICUZDump.java:[347,29] Found the field 'linesep' with the same name as the parameter 'lineSep' but with different capitalization.
Did you mean
Writer w, String linesep, String tzid, int low, int high, boolean isJdk)
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/PerfTest.java:[846,40] Found the field 'fileName' with the same name as the parameter 'filename' but with different capitalization.
Did you mean
protected String[] readLines(String fileName, String srcEncoding, boolean bulkMode) {

[ICU_PRIORITY_2] IncrementInForLoopAndHeader (3) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/text/MessageFormat.java:[1227,8] This for loop increments the same variable in the header and in the body
icu4j/main/core/src/main/java/com/ibm/icu/text/MessageFormat.java:[1591,8] This for loop increments the same variable in the header and in the body
icu4j/samples/src/main/java/com/ibm/icu/samples/text/messagepattern/MiniMessageFormatter.java:[101,12] This for loop increments the same variable in the header and in the body

[WARNING] InlineMeSuggester (53) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/text/LocaleDisplayNames.java:[237,18] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "this.scriptDisplayName(script)")
icu4j/main/core/src/main/java/com/ibm/icu/text/CurrencyDisplayNames.java:[96,26] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "CurrencyData.provider.hasData()", imports = "com.ibm.icu.impl.CurrencyData")
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[1533,28] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "NumberFormat.getPattern(ULocale.forLocale(forLocale), choice)", imports = {"com.ibm.icu.text.NumberFormat", "com.ibm.icu.util.ULocale"})
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[713,26] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "Collections.emptySet()", imports = "java.util.Collections")
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[953,22] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "true")
icu4j/main/core/src/main/java/com/ibm/icu/impl/JavaTimeConverters.java:[227,27] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "TimeZone.getTimeZone(zoneId.getId())", imports = "com.ibm.icu.util.TimeZone")
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[2178,18] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "0")
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[3819,22] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "false")
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[6480,19] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "true")
icu4j/main/core/src/main/java/com/ibm/icu/text/Normalizer.java:[1516,15] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "0")
icu4j/main/core/src/main/java/com/ibm/icu/text/Normalizer.java:[1594,15] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "0")
icu4j/main/core/src/main/java/com/ibm/icu/text/PluralRules.java:[267,40] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "PluralRulesLoader.loader", imports = "com.ibm.icu.impl.PluralRulesLoader")
icu4j/main/core/src/main/java/com/ibm/icu/text/PluralRules.java:[2790,15] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "this.toString().compareTo(other.toString())")
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[2241,15] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "1000")
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[2479,33] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "null")
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[2501,33] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "null")
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[2519,33] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "null")
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[2536,33] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "null")
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6457,26] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "UCharacter.isJavaIdentifierStart(cp)", imports = "com.ibm.icu.lang.UCharacter")
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6470,26] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "UCharacter.isJavaIdentifierPart(cp)", imports = "com.ibm.icu.lang.UCharacter")
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7053,25] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "null")
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7107,25] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "null")
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7140,22] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "-1")
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7325,22] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "UPropertyAliases.INSTANCE.getPropertyValueEnumNoThrow(property, valueAlias)", imports = "com.ibm.icu.impl.UPropertyAliases")
icu4j/main/core/src/main/java/com/ibm/icu/text/IDNA.java:[605,31] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "IDNA2003.convertToASCII(src, options)", imports = "com.ibm.icu.impl.IDNA2003")
icu4j/main/core/src/main/java/com/ibm/icu/text/IDNA.java:[698,31] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "IDNA2003.convertIDNToASCII(src, options)", imports = "com.ibm.icu.impl.IDNA2003")
icu4j/main/core/src/main/java/com/ibm/icu/text/IDNA.java:[775,31] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "IDNA2003.convertToUnicode(src, options)", imports = "com.ibm.icu.impl.IDNA2003")
icu4j/main/core/src/main/java/com/ibm/icu/text/IDNA.java:[859,31] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "IDNA2003.convertIDNToUnicode(src, options)", imports = "com.ibm.icu.impl.IDNA2003")
icu4j/main/core/src/main/java/com/ibm/icu/text/DurationFormat.java:[39,33] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "BasicDurationFormat.getInstance(locale)", imports = "com.ibm.icu.impl.duration.BasicDurationFormat")
icu4j/main/core/src/main/java/com/ibm/icu/message2/MFParseException.java:[27,11] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "this.super(message, errorOffset)")
icu4j/main/core/src/main/java/com/ibm/icu/text/ChineseDateFormat.java:[242,18] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "this.super(name, calendarField)")
icu4j/main/core/src/main/java/com/ibm/icu/text/ChineseDateFormatSymbols.java:[56,11] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "this.super(ChineseCalendar.class, ULocale.forLocale(locale))", imports = {"com.ibm.icu.util.ChineseCalendar", "com.ibm.icu.util.ULocale"})
icu4j/main/core/src/main/java/com/ibm/icu/text/ChineseDateFormatSymbols.java:[67,11] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "this.super(ChineseCalendar.class, locale)", imports = "com.ibm.icu.util.ChineseCalendar")
icu4j/main/core/src/main/java/com/ibm/icu/text/ChineseDateFormatSymbols.java:[79,11] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "this.super(cal.getClass(), locale)")
icu4j/main/core/src/main/java/com/ibm/icu/text/ChineseDateFormatSymbols.java:[92,11] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "this.super(cal.getClass(), locale)")
icu4j/main/core/src/main/java/com/ibm/icu/text/SpoofChecker.java:[1640,18] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "this.getSkeleton(id)")
icu4j/main/core/src/main/java/com/ibm/icu/text/UFieldPosition.java:[30,11] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "this.super(-1)")
icu4j/main/core/src/main/java/com/ibm/icu/text/UFieldPosition.java:[39,11] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "this.super(field)")
icu4j/main/core/src/main/java/com/ibm/icu/text/UFieldPosition.java:[48,11] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "this.super(attribute, fieldID)")
icu4j/main/core/src/main/java/com/ibm/icu/text/UFieldPosition.java:[57,11] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "this.super(attribute)")
icu4j/main/core/src/main/java/com/ibm/icu/util/BuddhistCalendar.java:[248,22] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "false")
icu4j/main/core/src/main/java/com/ibm/icu/util/GregorianCalendar.java:[937,22] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "true")
icu4j/main/core/src/main/java/com/ibm/icu/util/BytesTrieBuilder.java:[149,22] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "false")
icu4j/main/core/src/main/java/com/ibm/icu/util/CharsTrieBuilder.java:[113,22] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "true")
icu4j/main/core/src/main/java/com/ibm/icu/util/ChineseCalendar.java:[1071,19] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "false")
icu4j/main/core/src/main/java/com/ibm/icu/util/CopticCalendar.java:[253,22] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "true")
icu4j/main/core/src/main/java/com/ibm/icu/util/DangiCalendar.java:[130,18] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "\"dangi\"")
icu4j/main/core/src/main/java/com/ibm/icu/util/JapaneseCalendar.java:[450,19] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "false")
icu4j/main/core/src/main/java/com/ibm/icu/util/JapaneseCalendar.java:[491,22] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "false")
icu4j/main/core/src/main/java/com/ibm/icu/util/PersianCalendar.java:[520,18] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "\"persian\"")
icu4j/main/collate/src/main/java/com/ibm/icu/text/RuleBasedCollator.java:[1080,9] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "new ContractionsAndExpansions(set, null, null, false).forCodePoint(this.data, c)", imports = "com.ibm.icu.impl.coll.ContractionsAndExpansions")
icu4j/main/collate/src/main/java/com/ibm/icu/text/RuleBasedCollator.java:[1413,19] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "false")
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[1270,18] This deprecated API looks inlineable. If you'd like the body of the API to be automatically inlined to its callers, please annotate it with @InlineMe. NOTE: the suggested fix makes the method final if it was not already.
Did you mean
@InlineMe(replacement = "this.compare(left.toString(), right.toString())")

[WARNING] InlineTrivialConstant (2) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[336,32] Consider inlining this constant
Did you mean to remove this line?
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/localeconverter/XLIFF2ICUConverter.java:[174,32] Consider inlining this constant
Did you mean to remove this line?

[WARNING] IntLongMath [FragileCode] (47) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/text/UnicodeSet.java:[5347,37] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) unicodeSet.size() - unicodeSet.strings.size();
icu4j/main/core/src/main/java/com/ibm/icu/impl/FormattedValueFieldPositionIteratorImpl.java:[128,53] Expression of type int may overflow before being assigned to a long
Did you mean
comparison = (long) fp2.getBeginIndex() - fp1.getBeginIndex();
icu4j/main/core/src/main/java/com/ibm/icu/impl/FormattedValueFieldPositionIteratorImpl.java:[131,51] Expression of type int may overflow before being assigned to a long
Did you mean
comparison = (long) fp1.getEndIndex() - fp2.getEndIndex();
icu4j/main/core/src/main/java/com/ibm/icu/impl/FormattedValueFieldPositionIteratorImpl.java:[142,52] Expression of type int may overflow before being assigned to a long
Did you mean
comparison = (long) fp1.hashCode() - fp2.hashCode();
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/DecimalQuantity_DualStorageBCD.java:[306,51] Expression of type int may overflow before being assigned to a long
Did you mean
long newScale = (long) result.scale() + scale + exponent;
icu4j/main/core/src/main/java/com/ibm/icu/util/GregorianCalendar.java:[794,44] Expression of type int may overflow before being assigned to a long
Did you mean
long julianEpochDay = (long) julianDay - (JAN_1_1_JULIAN_DAY - 2);
icu4j/main/core/src/main/java/com/ibm/icu/util/HebrewCalendar.java:[824,27] Expression of type int may overflow before being assigned to a long
Did you mean
long d = julianDay - 347997L;
icu4j/main/core/src/main/java/com/ibm/icu/util/IslamicCalendar.java:[573,41] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) yrStartLinearEstimate + UMALQURA_YEAR_START_ESTIMATE_FIX[index];
icu4j/main/core/src/main/java/com/ibm/icu/util/PersianCalendar.java:[472,40] Expression of type int may overflow before being assigned to a long
Did you mean
long daysSinceEpoch = (long) julianDay - PERSIAN_EPOCH;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/normalizer/NormalizerBuilder.java:[420,42] Expression of type int may overflow before being assigned to a long
Did you mean
long pair = (first << 16L) | second;
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/Collation.java:[470,43] Expression of type int may overflow before being assigned to a long
Did you mean
primary = ((offset % 251) + 4L) << 16;
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/Collation.java:[474,43] Expression of type int may overflow before being assigned to a long
Did you mean
primary = ((offset % 254) + 2L) << 16;
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/Collation.java:[487,44] Expression of type int may overflow before being assigned to a long
Did you mean
long primary = ((offset % 254) + 2L) << 8;
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/Collation.java:[568,25] Expression of type int may overflow before being assigned to a long
Did you mean
long primary = 2L + (c % 18) * 14;
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationBuilder.java:[1591,20] Expression of type int may overflow before being assigned to a long
Did you mean
return next << 8L;
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[48,35] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) MAX_ - MIN_ + 1;
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[62,35] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) MAX_ - MIN_ + 1;
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[76,35] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) MAX_ - MIN_ + 1;
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[90,35] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) MAX_ - MIN_ + 1;
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[104,35] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) MAX_ - MIN_ + 1;
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[118,35] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) MAX_ - MIN_ + 1;
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[132,35] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) MAX_ - MIN_ + 1;
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[146,35] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) MAX_ - MIN_ + 1;
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[160,35] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) MAX_ - MIN_ + 1;
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[174,35] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) MAX_ - MIN_ + 1;
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[188,35] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) MAX_ - MIN_ + 1;
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[202,35] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) MAX_ - MIN_ + 1;
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[216,35] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) MAX_ - MIN_ + 1;
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[230,35] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) MAX_ - MIN_ + 1;
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[244,35] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) MAX_ - MIN_ + 1;
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[258,35] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) MAX_ - MIN_ + 1;
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[272,35] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) MAX_ - MIN_ + 1;
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[286,35] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) MAX_ - MIN_ + 1;
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[300,35] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) MAX_ - MIN_ + 1;
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[314,35] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) MAX_ - MIN_ + 1;
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[328,35] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) MAX_ - MIN_ + 1;
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[342,35] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) MAX_ - MIN_ + 1;
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[356,35] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) MAX_ - MIN_ + 1;
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[370,35] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) MAX_ - MIN_ + 1;
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[384,35] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) MAX_ - MIN_ + 1;
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[398,35] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) MAX_ - MIN_ + 1;
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[412,35] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) MAX_ - MIN_ + 1;
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[426,35] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) MAX_ - MIN_ + 1;
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[440,35] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) MAX_ - MIN_ + 1;
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[454,35] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) MAX_ - MIN_ + 1;
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[468,35] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) MAX_ - MIN_ + 1;
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[482,35] Expression of type int may overflow before being assigned to a long
Did you mean
return (long) MAX_ - MIN_ + 1;

[ICU_PRIORITY_1] InvalidBlockTag (12) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/impl/Trie2_16.java:[139,7] Tag name `throw` is unknown. Did you mean tag `throws`?
Did you mean
* @throws IOException on an error writing to the OutputStream.
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/MeasureUnitImpl.java:[465,11] The tag @throws is not allowed on this type of element.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/DecimalQuantity_AbstractBCD.java:[20,3] Tag name `implements` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/impl/ReplaceableUCharacterIterator.java:[184,7] Tag name `returns` is unknown. Did you mean tag `return`?
Did you mean
* @return the character at the specified currentIndex or DONE if the specified currentIndex is
icu4j/main/core/src/main/java/com/ibm/icu/impl/Trie2_32.java:[137,7] Tag name `throw` is unknown. Did you mean tag `throws`?
Did you mean
* @throws IOException on an error writing to the OutputStream.
icu4j/main/core/src/main/java/com/ibm/icu/impl/duration/Period.java:[313,7] Tag name `eturn` is unknown. Did you mean tag `return`?
Did you mean
* @return the new Period object.
icu4j/main/core/src/main/java/com/ibm/icu/text/Quantifier.java:[100,7] Tag name `returns` is unknown. Did you mean tag `return`?
Did you mean
* @return a reference to toUnionTo
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/TimeUnitTest.java:[289,7] Tag name `bug9042` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterCategoryTest.java:[35,7] Tag name `returns` is unknown. Did you mean tag `return`?
Did you mean
* @return category name
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterDirectionTest.java:[35,7] Tag name `returns` is unknown. Did you mean tag `return`?
Did you mean
* @return category name
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/normalizer/ConformanceTest.java:[480,7] Tag name `returns` is unknown. Did you mean tag `return`?
Did you mean
* @return true if got == exp
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/normalizer/UnicodeNormalizerConformanceTest.java:[178,7] Tag name `returns` is unknown. Did you mean tag `return`?
Did you mean
* @return true if got == exp

[WARNING] InvalidInlineTag (591) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[56,3] Tag name `icuenhanced` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[56,35] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[430,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[443,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[499,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[545,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[858,7] Tag name `icunote` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[953,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[976,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[1015,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[1058,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[1069,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[1078,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[1111,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[1122,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[1137,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[1177,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[1246,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[1257,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[1269,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[1281,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[1794,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2040,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2109,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2136,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2156,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2224,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2238,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2251,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2263,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2275,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2289,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2320,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2345,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2358,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2371,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2387,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2399,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2451,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2466,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2509,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2522,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2540,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2553,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2566,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2583,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2596,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2608,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2624,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2669,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2682,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2699,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2711,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2723,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2737,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2755,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2767,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2779,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2789,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2815,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2862,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2907,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2931,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[2958,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[3001,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[3066,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[3566,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[3591,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[3621,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[3651,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/BreakIterator.java:[23,3] Tag name `icuenhanced` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/BreakIterator.java:[23,42] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/BreakIterator.java:[559,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/BreakIterator.java:[566,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/BreakIterator.java:[573,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/BreakIterator.java:[580,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/BreakIterator.java:[587,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/BreakIterator.java:[626,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/BreakIterator.java:[661,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/BreakIterator.java:[696,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/BreakIterator.java:[731,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/BreakIterator.java:[743,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/BreakIterator.java:[757,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/BreakIterator.java:[772,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/BreakIterator.java:[787,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/BreakIterator.java:[806,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/BreakIterator.java:[835,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/BreakIterator.java:[914,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/BreakIterator.java:[984,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[36,3] Tag name `icuenhanced` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[36,41] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[170,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[177,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[187,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[194,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[201,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[208,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[216,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[224,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[233,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[241,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[268,83] Tag name `icunote` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[333,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[351,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[360,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[385,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[394,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[403,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[412,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[522,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[552,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[563,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[576,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[620,37] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[633,37] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[646,37] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[682,37] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[728,37] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[769,37] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[804,37] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[815,37] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[828,37] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[839,37] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[1073,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[1086,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[1105,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[29,3] Tag name `icuenhanced` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[29,43] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[100,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[117,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[134,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[153,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[162,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[182,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[200,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[221,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[243,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[264,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[290,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[300,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[308,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[316,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[376,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[421,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[464,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[480,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[494,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[508,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[523,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[584,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[718,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[731,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[743,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[754,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[764,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[775,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[782,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[789,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[796,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[803,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[812,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[829,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[846,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[863,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[874,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/BasicTimeZone.java:[18,3] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/BasicTimeZone.java:[34,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/BasicTimeZone.java:[73,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/BasicTimeZone.java:[112,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/BasicTimeZone.java:[159,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/BasicTimeZone.java:[279,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/BasicTimeZone.java:[290,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/BasicTimeZone.java:[463,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/BasicTimeZone.java:[682,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/BasicTimeZone.java:[804,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[37,3] Tag name `icuenhanced` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[37,37] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[757,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[766,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[775,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[786,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[797,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[810,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[818,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[1012,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[1024,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[1036,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[1050,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[1064,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[1077,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[1090,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[1814,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[1825,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[1950,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[2286,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[2676,10] Tag name `icunote` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[3045,10] Tag name `icunote` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[3296,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[3306,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[3909,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[4103,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[4128,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[4143,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[4174,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[4465,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[4515,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[4540,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[4557,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[4796,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[4807,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[4824,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[6204,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[6456,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[6487,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[33,3] Tag name `icuenhanced` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[33,37] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[141,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[150,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[176,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[185,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[194,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[203,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[212,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[221,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[229,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[240,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[251,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[258,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[802,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[813,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[878,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[1106,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[1119,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[1133,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[1204,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[1230,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[1291,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[38,3] Tag name `icuenhanced` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[38,39] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[241,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[336,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[344,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[352,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[360,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[368,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[376,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[384,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[393,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[401,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[409,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[417,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[425,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[435,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[443,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[452,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[461,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[470,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[480,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[488,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[496,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[505,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[896,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[938,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[945,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[952,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[959,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[966,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[973,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[984,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[991,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[998,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1005,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1012,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1019,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1026,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1033,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1040,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1047,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1054,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1061,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1068,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1076,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1084,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1092,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1099,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1106,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1114,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1122,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1130,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1138,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1146,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1154,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1162,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1170,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1219,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1227,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1234,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1241,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1249,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1257,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1264,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1272,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1280,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1312,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1324,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1336,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1348,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1360,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1372,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1405,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1412,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1419,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1427,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1435,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1443,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1688,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1867,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[1880,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[2201,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[2214,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[2228,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[2244,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[2260,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[2283,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[2297,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[2312,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[2327,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[2344,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[2576,11] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[2583,11] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/SimpleTimeZone.java:[15,3] Tag name `icuenhanced` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/SimpleTimeZone.java:[15,43] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[42,3] Tag name `icuenhanced` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[42,42] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[1094,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[1196,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[1207,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[1240,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[1254,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[1316,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[1329,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[1357,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[1373,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[1581,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[1593,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[1628,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[1639,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[1664,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[1675,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[1744,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[1760,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[1777,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[1789,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[1811,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[1822,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[1845,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[1856,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[1873,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[1884,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[1971,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[1986,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[2007,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[2021,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[2047,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[2058,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[2136,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[2153,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[2180,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[2192,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[2320,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[2331,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[2371,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[2382,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[2396,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[2407,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[2715,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[2728,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[2741,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormat.java:[2754,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[33,3] Tag name `icuenhanced` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[33,49] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[69,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[134,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[153,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[189,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[262,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[303,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[424,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[435,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[482,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[493,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[540,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[551,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[597,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[608,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[739,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[750,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[774,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[788,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[802,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[812,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[978,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[989,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[1014,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[1025,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[1036,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[1047,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[1101,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[1113,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[1125,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[1141,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[1156,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[1163,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[1170,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[1180,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[1207,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[2016,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DecimalFormatSymbols.java:[2039,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/MessageFormat.java:[52,3] Tag name `icuenhanced` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/MessageFormat.java:[52,42] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/MessageFormat.java:[457,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/MessageFormat.java:[491,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/MessageFormat.java:[514,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/MessageFormat.java:[626,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/MessageFormat.java:[710,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/MessageFormat.java:[828,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/MessageFormat.java:[843,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/MessageFormat.java:[1008,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/MessageFormat.java:[1156,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/MessageFormat.java:[1340,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/MessageFormat.java:[2482,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/SimpleDateFormat.java:[54,3] Tag name `icuenhanced` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/SimpleDateFormat.java:[54,45] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/SimpleDateFormat.java:[1115,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/SimpleDateFormat.java:[4540,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/SimpleDateFormat.java:[4551,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[44,3] Tag name `icuenhanced` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[44,46] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[93,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[100,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[107,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[115,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[125,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[132,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[139,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[146,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[153,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[161,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[169,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[177,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[185,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[193,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[201,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[209,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[217,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[224,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[232,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[264,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[278,10] Tag name `icunote` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[293,10] Tag name `icunote` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[307,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[309,10] Tag name `icunote` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[326,10] Tag name `icunote` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[340,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[343,10] Tag name `icunote` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[715,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[789,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[799,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[809,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[819,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[1103,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[1150,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[41,3] Tag name `icuenhanced` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[41,38] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[137,6] Tag name `icunote` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[171,7] Tag name `icuenhanced` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[171,55] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[178,10] Tag name `icunote` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4157,11] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4191,58] Tag name `icunote` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6310,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6430,68] Tag name `icunote` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6799,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6812,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6823,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6842,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6867,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6894,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6911,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6928,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6939,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6970,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6998,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7008,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7023,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7045,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7058,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7083,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7098,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7112,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7129,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7145,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7171,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7186,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7211,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7233,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7284,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7330,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7348,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7561,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7596,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7620,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7638,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7645,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7659,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7682,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7699,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7764,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7829,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7861,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7889,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7919,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7941,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7974,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[8010,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[8026,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[8042,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[8058,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[8074,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[8118,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[8173,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[8195,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[8315,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[8375,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[8390,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[8407,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[8422,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[8490,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[8701,10] Tag name `icunote` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[8704,10] Tag name `icunote` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateIntervalFormat.java:[1276,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateIntervalFormat.java:[1291,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/text/RuleBasedNumberFormat.java:[1502,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/GregorianCalendar.java:[15,3] Tag name `icuenhanced` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/GregorianCalendar.java:[15,46] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/GregorianCalendar.java:[381,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/GregorianCalendar.java:[392,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/ChineseCalendar.java:[1090,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/IslamicCalendar.java:[1638,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/StringTokenizer.java:[17,3] Tag name `icuenhanced` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/StringTokenizer.java:[17,37] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/StringTokenizer.java:[114,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/StringTokenizer.java:[134,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/StringTokenizer.java:[180,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/core/src/main/java/com/ibm/icu/util/StringTokenizer.java:[401,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/RuleBasedCollator.java:[768,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/RuleBasedCollator.java:[816,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/RuleBasedCollator.java:[829,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/RuleBasedCollator.java:[877,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/RuleBasedCollator.java:[919,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/RuleBasedCollator.java:[1290,10] Tag name `icunote` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/RuleBasedCollator.java:[1418,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[33,3] Tag name `icuenhanced` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[33,37] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[156,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[180,7] Tag name `icunote` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[820,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[877,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[893,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[907,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[938,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[972,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[984,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[999,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[1056,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[1088,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[1102,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[1116,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[1129,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[1144,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[1158,51] Tag name `icunote` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[1216,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[1294,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[1313,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[1332,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[1346,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[1370,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[1379,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[1394,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[1402,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[1491,7] Tag name `icu` is unknown. If this is a commonly-used custom tag, please click 'not useful' and file a bug.
File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/impl/CalendarAstronomer.java:[24,3] The reference `#setDate` to a method doesn't resolve to anything. Is it misspelt, or is the parameter list not correct? See https://docs.oracle.com/javase/8/docs/technotes/tools/unix/javadoc.html#JSSOR654 for documentation on how to form method links.
icu4j/main/core/src/main/java/com/ibm/icu/text/TimeZoneFormat.java:[1982,7] The reference `#_gmtPatternTokens` to a method doesn't resolve to anything. Is it misspelt, or is the parameter list not correct? See https://docs.oracle.com/javase/8/docs/technotes/tools/unix/javadoc.html#JSSOR654 for documentation on how to form method links.
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/DecimalQuantity_AbstractBCD.java:[37,86] The reference `#computePrecisionAndCompact()` to a method doesn't resolve to anything. Is it misspelt, or is the parameter list not correct? See https://docs.oracle.com/javase/8/docs/technotes/tools/unix/javadoc.html#JSSOR654 for documentation on how to form method links.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[151,21] The reference `#diagrun` to a method doesn't resolve to anything. Is it misspelt, or is the parameter list not correct? See https://docs.oracle.com/javase/8/docs/technotes/tools/unix/javadoc.html#JSSOR654 for documentation on how to form method links.

[WARNING] InvalidParam (58) 🔗

File and line number Message
icu4j/main/framework/src/test/java/com/ibm/icu/dev/test/AbstractTestLog.java:[65,7] Parameter name `message` is unknown.
Did you mean
*
icu4j/main/framework/src/test/java/com/ibm/icu/dev/test/AbstractTestLog.java:[66,7] Parameter name `level` is unknown. Did you mean year?
Did you mean
* @param year the message level, either LOG, WARN, or ERR.
icu4j/main/framework/src/test/java/com/ibm/icu/dev/test/AbstractTestLog.java:[67,7] Parameter name `incCount` is unknown.
Did you mean
*
icu4j/main/framework/src/test/java/com/ibm/icu/dev/test/AbstractTestLog.java:[68,7] Parameter name `newln` is unknown. Did you mean year?
Did you mean
* @param year if true, forces a newline after the message
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[3163,7] Parameter name `alternateTags` is unknown.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/Trie2.java:[911,11] Parameter name `c` is unknown.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/Trie2.java:[953,7] Parameter name `c` is unknown. Did you mean val?
Did you mean
* @param val The character to begin with.
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/MeasureUnitImpl.java:[468,11] Parameter name `singleUnit` is unknown.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/MeasureUnitImpl.java:[469,11] Parameter name `constant` is unknown.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/Normalizer2Impl.java:[1972,7] Parameter name `c` is unknown.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/DecimalQuantity_DualStorageBCD.java:[93,7] Parameter name `s` is unknown. Did you mean num?
Did you mean
* @param num The String to parse
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/DecimalQuantity_AbstractBCD.java:[1267,7] Parameter name `n` is unknown. Did you mean input?
Did you mean
* @param input The value to consume.
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/DecimalQuantity_AbstractBCD.java:[1276,7] Parameter name `n` is unknown. Did you mean input?
Did you mean
* @param input The value to consume.
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/DecimalQuantity_AbstractBCD.java:[1285,7] Parameter name `n` is unknown. Did you mean input?
Did you mean
* @param input The value to consume.
icu4j/main/core/src/main/java/com/ibm/icu/impl/RelativeDateFormat.java:[345,7] Parameter name `status` is unknown.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/TrieIterator.java:[350,7] Parameter name `currentBlock` is unknown.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[186,7] Parameter name `codepoint` is unknown.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[424,7] Parameter name `codepoint` is unknown.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[653,7] Parameter name `codepoint` is unknown.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[1316,7] Parameter name `target` is unknown.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/duration/DurationFormatter.java:[37,7] Parameter name `tz` is unknown.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/duration/PeriodFormatter.java:[28,7] Parameter name `ts` is unknown.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/duration/Period.java:[311,7] Parameter name `p` is unknown. Did you mean unit?
Did you mean
* @param unit the period to change
icu4j/main/core/src/main/java/com/ibm/icu/impl/duration/DateFormatter.java:[40,7] Parameter name `locale` is unknown. Did you mean localeName?
Did you mean
* @param localeName the new locale to use
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/LocaleValidityChecker.java:[150,7] Parameter name `extension` is unknown.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/LongNameHandler.java:[90,7] Parameter name `coreUnit` is unknown.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/LongNameHandler.java:[92,7] Parameter name `PlaceholderPosition` is unknown.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/LongNameHandler.java:[93,7] Parameter name `joinerChar` is unknown.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/text/BidiTransform.java:[684,7] Parameter name `level` is unknown. Did you mean order?
Did you mean
* @param order Order value
icu4j/main/core/src/main/java/com/ibm/icu/text/BidiTransform.java:[693,7] Parameter name `level` is unknown. Did you mean order?
Did you mean
* @param order Order value
icu4j/main/core/src/main/java/com/ibm/icu/text/DateIntervalFormat.java:[2271,68] `stringToReplace` is very close to the parameter `strToReplace`. Did you mean to reference the parameter?
Did you mean
* @param strToReplaceWith The string to substitute in wherever {@code strToReplace} was
icu4j/main/core/src/main/java/com/ibm/icu/text/ReplaceableContextIterator.java:[34,7] Parameter name `rep` is unknown.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/UnicodeMapTest.java:[171,7] Parameter name `nextInt` is unknown.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/UnicodeMapTest.java:[246,7] Parameter name `others` is unknown.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateTimeGeneratorTest.java:[775,7] Parameter name `fullOrder` is unknown.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateTimeGeneratorTest.java:[776,7] Parameter name `longOrder` is unknown.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateTimeGeneratorTest.java:[839,11] Parameter name `order2` is unknown. Did you mean other?
Did you mean
* @param other
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/normalizer/UnicodeNormalizer.java:[81,7] Parameter name `form` is unknown.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/CalendarFieldsSet.java:[19,7] Parameter name `whichEnum` is unknown.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/CalendarFieldsSet.java:[20,7] Parameter name `fieldsCount` is unknown.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/FieldsSet.java:[114,7] Parameter name `status` is unknown.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/FieldsSet.java:[157,7] Parameter name `status` is unknown.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/FieldsSet.java:[177,7] Parameter name `status` is unknown.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/TrieMapTest.java:[456,7] Parameter name `bytes` is unknown. Did you mean style?
Did you mean
* @param style
icu4j/main/collate/src/main/java/com/ibm/icu/text/StringSearch.java:[678,7] Parameter name `destinationlength` is unknown.
Did you mean
*
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/AlphabeticIndexTest.java:[663,7] Parameter name `b` is unknown.
Did you mean
*
icu4j/main/translit/src/main/java/com/ibm/icu/text/AnyTransliterator.java:[210,7] Parameter name `targetScript2` is unknown.
Did you mean
*
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetEncoderICU.java:[909,7] Parameter name `source` is unknown.
Did you mean
*
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[289,11] Parameter name `diff` is unknown. Did you mean n?
Did you mean
* @param n difference value -0x10ffff..0x10ffff
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[772,11] Parameter name `count` is unknown.
Did you mean
*
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[3879,11] Parameter name `cx` is unknown.
Did you mean
*
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[3881,11] Parameter name `pre` is unknown. Did you mean source?
Did you mean
* @param source UChars that must match; !initialMatch: partial match with them
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[3883,11] Parameter name `src` is unknown. Did you mean source?
Did you mean
* @param source UChars that can be used to complete a match
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[3884,11] Parameter name `srcLength` is unknown.
Did you mean
*
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[3886,11] Parameter name `useFallback` is unknown. Did you mean isUseFallback?
Did you mean
* @param isUseFallback "use fallback" flag, usually from cnv->useFallback
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetISO2022.java:[286,7] Parameter name `is` is unknown. Did you mean c?
Did you mean
* @param c the output byte
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DataDrivenFormatTest.java:[42,7] Parameter name `baseName` is unknown.
Did you mean
*
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DataDrivenFormatTest.java:[43,7] Parameter name `locName` is unknown.
Did you mean
*

[WARNING] InvalidThrows (3) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/text/UnicodeSet.java:[619,7] The documented method doesn't actually throw this checked exception.
Did you mean
*
icu4j/main/core/src/main/java/com/ibm/icu/text/UnicodeSet.java:[637,7] The documented method doesn't actually throw this checked exception.
Did you mean
*
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[2155,7] The documented method doesn't actually throw this checked exception.
Did you mean
*

[WARNING] IterableAndIterator [FragileCode] (2) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[1055,12] Class should not implement both `Iterable` and `Iterator`
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/XCldrStub.java:[159,19] Class should not implement both `Iterable` and `Iterator`

[WARNING] JavaLangClash [Style] (2) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/text/IDNA.java:[416,18] com.ibm.icu.text.IDNA.Error clashes with java.lang.Error
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/message2/Unit.java:[34,11] com.ibm.icu.dev.test.message2.Unit.Error clashes with java.lang.Error

[ICU_PRIORITY_2] JavaUtilDate (733) 🔗

File and line number Message
icu4j/main/framework/src/test/java/com/ibm/icu/dev/test/AbstractTestLog.java:[73,19] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/framework/src/test/java/com/ibm/icu/dev/test/AbstractTestLog.java:[76,25] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/impl/CalendarAstronomer.java:[261,15] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/text/CurrencyMetaInfo.java:[150,32] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/text/CurrencyMetaInfo.java:[274,60] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/text/CurrencyMetaInfo.java:[274,76] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/text/CurrencyMetaInfo.java:[287,72] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/text/CurrencyMetaInfo.java:[288,66] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/text/CurrencyMetaInfo.java:[635,57] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/Currency.java:[1025,52] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/impl/JavaTimeConverters.java:[309,36] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/impl/JavaTimeConverters.java:[360,64] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/BasicTimeZone.java:[389,42] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/BasicTimeZone.java:[429,38] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/BasicTimeZone.java:[576,48] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/BasicTimeZone.java:[632,41] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[1176,43] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[1201,43] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[1886,15] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[1899,36] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[2282,82] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[2334,42] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[3956,36] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/text/TimeZoneFormat.java:[1881,47] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[678,51] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[660,26] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/impl/OlsonTimeZone.java:[380,30] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/SimpleTimeZone.java:[1351,65] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/SimpleTimeZone.java:[1352,57] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/SimpleTimeZone.java:[1354,65] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/SimpleTimeZone.java:[1355,57] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/SimpleTimeZone.java:[1382,64] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/SimpleTimeZone.java:[1383,57] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/SimpleTimeZone.java:[1385,64] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/SimpleTimeZone.java:[1386,57] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/SimpleTimeZone.java:[1473,76] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/SimpleTimeZone.java:[1513,90] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeArrayTimeZoneRule.java:[84,15] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeArrayTimeZoneRule.java:[94,15] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeArrayTimeZoneRule.java:[114,15] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeArrayTimeZoneRule.java:[128,23] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/AnnualTimeZoneRule.java:[165,15] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/AnnualTimeZoneRule.java:[203,35] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/AnnualTimeZoneRule.java:[203,73] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/AnnualTimeZoneRule.java:[222,35] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/AnnualTimeZoneRule.java:[222,73] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/impl/RelativeDateFormat.java:[333,23] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/text/SimpleDateFormat.java:[2767,41] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/impl/duration/BasicDurationFormatter.java:[57,42] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/GregorianCalendar.java:[501,39] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/GregorianCalendar.java:[532,15] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/EasterHoliday.java:[148,40] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/EasterHoliday.java:[198,29] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/EasterHoliday.java:[210,45] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/EasterHoliday.java:[237,35] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/RangeDateRule.java:[42,12] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/RangeDateRule.java:[96,66] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/RangeDateRule.java:[101,59] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/RangeDateRule.java:[136,28] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/RuleBasedTimeZone.java:[155,30] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/RuleBasedTimeZone.java:[383,36] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/RuleBasedTimeZone.java:[386,54] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/RuleBasedTimeZone.java:[390,54] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/RuleBasedTimeZone.java:[468,37] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/RuleBasedTimeZone.java:[471,54] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/RuleBasedTimeZone.java:[475,54] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/RuleBasedTimeZone.java:[570,42] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/RuleBasedTimeZone.java:[602,46] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/RuleBasedTimeZone.java:[642,28] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/RuleBasedTimeZone.java:[644,61] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/RuleBasedTimeZone.java:[647,46] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/RuleBasedTimeZone.java:[652,61] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/RuleBasedTimeZone.java:[655,61] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/RuleBasedTimeZone.java:[658,46] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/RuleBasedTimeZone.java:[663,61] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/RuleBasedTimeZone.java:[788,27] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/SimpleDateRule.java:[150,50] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/main/java/com/ibm/icu/util/SimpleDateRule.java:[154,43] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[138,84] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[159,86] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[321,22] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[399,36] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[419,36] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[421,33] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[440,29] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[449,55] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[453,24] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[453,50] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[505,49] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[518,49] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[537,21] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[545,21] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[566,58] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[568,58] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[570,58] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[581,58] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[618,24] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[687,45] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[728,41] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[778,29] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[793,30] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[846,36] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[847,33] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[852,36] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[853,33] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[857,36] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[858,33] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[861,36] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[862,33] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[865,36] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[866,33] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[871,36] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[872,33] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[886,46] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[888,46] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[932,24] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[936,29] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[950,38] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[952,47] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[952,64] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1079,29] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1079,53] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1091,20] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1091,40] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1134,25] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1138,25] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1152,24] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1152,50] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1160,50] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1225,29] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1229,29] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1234,40] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1266,38] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1272,41] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1278,42] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1303,24] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1372,48] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1374,48] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1428,20] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1431,33] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1516,61] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1523,62] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1598,25] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1767,27] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1804,30] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1923,29] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[2269,36] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[2274,43] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[2392,40] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[2477,34] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[2668,38] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[2677,38] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[2684,38] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[2690,38] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[2857,20] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[2861,31] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[2930,28] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarTestFmwk.java:[109,36] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarTestFmwk.java:[558,37] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/TestCase.java:[49,24] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/TestCase.java:[53,15] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/TestCase.java:[98,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/TestCase.java:[177,18] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/TestCase.java:[250,57] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/ChineseTest.java:[128,27] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/ChineseTest.java:[269,28] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/ChineseTest.java:[612,54] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/ChineseTestCase.java:[36,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[75,41] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[77,18] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[78,26] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[86,69] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[113,21] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[113,40] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[143,34] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[144,31] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[178,36] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[200,34] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[201,31] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[232,54] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[234,28] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[266,49] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[268,28] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[314,43] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[315,20] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[362,21] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[362,42] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[414,33] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[414,64] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[423,33] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[423,64] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[432,33] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[432,64] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[496,32] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[496,63] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[503,32] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[503,63] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[794,41] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[803,42] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[1006,20] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[1010,29] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[1119,17] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[1347,31] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[1356,31] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CopticTest.java:[288,52] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/DangiTest.java:[129,27] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/DangiTest.java:[486,17] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/EthiopicTest.java:[258,30] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/EthiopicTest.java:[346,56] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/EthiopicTest.java:[378,23] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/EthiopicTest.java:[382,27] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/EthiopicTest.java:[386,31] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/EthiopicTest.java:[392,40] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/HebrewTest.java:[450,56] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/HolidayTest.java:[40,14] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/HolidayTest.java:[87,21] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/HolidayTest.java:[87,35] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/HolidayTest.java:[94,28] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/HolidayTest.java:[165,31] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/HolidayTest.java:[183,29] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/HolidayTest.java:[183,39] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[124,32] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[124,62] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[186,24] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[434,56] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[578,52] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[726,20] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[770,29] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[773,36] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[964,27] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[982,27] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[1017,27] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[1160,33] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[1286,26] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[2627,33] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[3224,62] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[3224,75] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[3296,28] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[3311,49] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[3311,66] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IndianTest.java:[161,52] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IslamicTest.java:[209,54] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IslamicTest.java:[260,23] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IslamicTest.java:[264,27] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IslamicTest.java:[268,31] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IslamicTest.java:[274,40] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/JapaneseTest.java:[76,56] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/JapaneseTest.java:[279,23] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/JapaneseTest.java:[351,21] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/JapaneseTest.java:[352,40] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/JapaneseTest.java:[365,33] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/JapaneseTest.java:[370,46] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/JapaneseTest.java:[371,46] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/JapaneseTest.java:[388,45] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/PersianTest.java:[116,27] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/duration/ICUDurationTest.java:[194,47] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/duration/ICUDurationTest.java:[204,79] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/duration/ICUDurationTest.java:[204,60] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/duration/ICUDurationTest.java:[393,22] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/duration/ICUDurationTest.java:[487,21] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatMiscTests.java:[72,17] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[207,31] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[207,48] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[285,49] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[293,49] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[415,29] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[415,45] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[515,17] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[540,29] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[582,39] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[582,53] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[594,42] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[594,43] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[594,70] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[709,24] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[748,17] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[752,25] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[752,52] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[839,31] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[839,55] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[846,32] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[846,53] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[850,36] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[850,59] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[909,17] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[910,12] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[910,30] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[1011,26] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[1026,26] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[1042,26] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[1057,26] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[1073,26] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[1091,26] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[1107,26] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[1143,17] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[1370,30] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[1381,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[1462,17] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[1622,17] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTestJ.java:[64,17] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTestJ.java:[83,24] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTestJ.java:[149,17] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTestJ.java:[182,24] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTestJ.java:[242,17] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTestJ.java:[243,36] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTestJ.java:[254,51] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTestJ.java:[260,51] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTestJ.java:[282,41] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTestJ.java:[313,38] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRoundTripTest.java:[200,59] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRoundTripTest.java:[200,84] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRoundTripTest.java:[227,51] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRoundTripTest.java:[228,70] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRoundTripTest.java:[240,81] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRoundTripTest.java:[258,64] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRoundTripTest.java:[258,86] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRoundTripTest.java:[263,91] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRoundTripTest.java:[286,15] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[2084,62] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[2084,80] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[2235,62] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[2235,80] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[2476,62] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[2476,80] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[2656,62] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[2656,80] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3725,26] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3726,26] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3727,63] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3727,81] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3807,33] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3825,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3827,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3833,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3835,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3841,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3843,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3849,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3851,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3857,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3859,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3865,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3867,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3873,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3875,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3881,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3883,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3889,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3891,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3897,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3899,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3905,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3907,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3913,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3915,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3921,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3923,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3929,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3931,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3937,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3939,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3945,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3947,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3953,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3955,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3961,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3963,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3969,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3971,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3977,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3979,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3985,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3987,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3993,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3995,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4001,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4003,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4009,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4011,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4017,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4019,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4025,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4027,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4033,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4035,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4041,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4043,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4049,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4051,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4057,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4059,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4065,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4067,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4073,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4075,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4088,40] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4090,36] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4115,69] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4115,95] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4116,69] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4116,95] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4117,69] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4117,95] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4180,53] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4180,77] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4182,53] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4182,77] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4183,72] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4183,96] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4230,53] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4230,77] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4232,53] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4232,77] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4234,53] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4234,77] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateTimeGeneratorTest.java:[377,72] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateTimeGeneratorTest.java:[433,8] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateTimeGeneratorTest.java:[648,44] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateTimeGeneratorTest.java:[667,24] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateTimeGeneratorTest.java:[2486,38] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormat.java:[124,19] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormat.java:[125,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormat.java:[126,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormat.java:[130,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormat.java:[130,36] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormat.java:[132,21] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormat.java:[132,41] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormat.java:[135,20] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormat.java:[135,65] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormat.java:[287,26] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormatAPI.java:[45,29] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormatAPI.java:[101,17] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormatAPI.java:[110,28] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormatAPI.java:[113,28] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormatAPI.java:[116,28] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormatAPI.java:[123,25] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormatAPI.java:[124,23] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormatAPI.java:[125,23] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormatAPI.java:[133,63] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormatAPI.java:[140,54] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormatAPI.java:[146,54] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormatAPIC.java:[45,23] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormatAPIC.java:[72,35] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormatAPIC.java:[73,29] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestSimpleDateFormatAPI.java:[78,17] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestSimpleDateFormatAPI.java:[86,28] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestSimpleDateFormatAPI.java:[89,28] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestSimpleDateFormatAPI.java:[96,23] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestSimpleDateFormatAPI.java:[97,23] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/MessageRegressionTest.java:[75,54] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/message2/MessageFormat2Test.java:[48,26] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/message2/Mf2IcuTest.java:[47,24] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/message2/Mf2IcuTest.java:[190,24] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/message2/TestUtils.java:[110,53] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timescale/TimeScaleDataTest.java:[253,31] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneAliasTest.java:[168,84] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneAliasTest.java:[169,85] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneAliasTest.java:[170,88] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneAliasTest.java:[171,73] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneAliasTest.java:[236,33] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneBoundaryTest.java:[59,22] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneBoundaryTest.java:[65,28] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneBoundaryTest.java:[70,45] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneBoundaryTest.java:[70,23] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneBoundaryTest.java:[136,28] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneBoundaryTest.java:[144,30] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneBoundaryTest.java:[149,31] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneBoundaryTest.java:[157,45] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneBoundaryTest.java:[177,41] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneBoundaryTest.java:[183,41] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneBoundaryTest.java:[187,24] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneBoundaryTest.java:[206,27] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneBoundaryTest.java:[210,24] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneBoundaryTest.java:[233,27] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneBoundaryTest.java:[262,35] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneBoundaryTest.java:[335,28] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneBoundaryTest.java:[336,18] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneBoundaryTest.java:[365,30] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneBoundaryTest.java:[507,49] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneBoundaryTest.java:[735,28] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneBoundaryTest.java:[741,30] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneBoundaryTest.java:[742,46] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneBoundaryTest.java:[747,34] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneBoundaryTest.java:[893,29] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneBoundaryTest.java:[900,21] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneOffsetLocalTest.java:[208,48] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneOffsetLocalTest.java:[226,48] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneOffsetLocalTest.java:[254,48] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneOffsetLocalTest.java:[282,48] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneOffsetLocalTest.java:[307,48] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneOffsetLocalTest.java:[332,48] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRegressionTest.java:[50,37] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRegressionTest.java:[50,18] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRegressionTest.java:[198,53] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRegressionTest.java:[200,34] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRegressionTest.java:[201,32] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRegressionTest.java:[846,46] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRegressionTest.java:[851,25] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRegressionTest.java:[861,43] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRegressionTest.java:[894,55] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRegressionTest.java:[1138,24] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRegressionTest.java:[1180,50] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRegressionTest.java:[1209,21] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRegressionTest.java:[1475,44] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRegressionTest.java:[1494,44] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[452,21] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[594,36] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[817,23] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[846,32] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[849,49] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[851,67] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[883,32] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[886,49] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[888,67] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[1096,50] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[1108,50] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[1119,50] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[1128,47] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[1129,40] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[1140,50] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[1241,36] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[1245,36] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[1249,37] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[1253,37] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[1264,36] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[1267,47] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[1268,40] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[1441,17] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[1483,23] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[1486,27] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[411,69] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[482,19] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[597,47] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[600,46] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[617,75] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[622,30] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[627,74] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[628,77] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[640,32] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[641,40] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[642,33] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[643,39] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[646,32] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[647,39] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[656,48] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[658,30] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[659,45] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[665,34] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[672,55] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[673,55] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[677,72] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[679,72] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[1567,52] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[1567,34] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[1676,39] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[1991,40] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[2450,29] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[2452,53] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[2607,29] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[2715,30] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[2832,43] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[2832,24] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[2842,39] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[2842,20] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[2846,47] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[2846,28] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/collate/src/main/java/com/ibm/icu/util/GlobalizationPreferences.java:[573,40] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DataDrivenFormatTest.java:[130,27] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DataDrivenFormatTest.java:[134,24] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DataDrivenFormatTest.java:[189,38] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[139,24] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[244,21] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[412,21] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[991,41] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[1116,36] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[3760,31] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[3760,53] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[3782,21] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[3790,42] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[3817,17] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[3820,34] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[3880,23] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[3880,58] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[3887,26] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[3892,26] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[3922,26] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[4211,25] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[4222,15] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[4231,32] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[4299,24] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[4335,20] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[4362,24] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[4437,24] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[4545,27] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[4558,20] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[4564,24] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[4582,22] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[4612,60] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[4612,41] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[4629,19] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[4692,28] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[6113,56] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[6465,30] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[6617,21] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[6672,17] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[6764,19] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[6863,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[6863,38] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[6875,27] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[6878,27] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[7061,38] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[7064,57] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[7924,25] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[8055,28] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[8102,32] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[8320,17] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[8841,23] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[8842,23] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[8843,23] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[8844,23] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[8845,23] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[8846,23] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[8847,23] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[8848,23] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[8849,23] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[8850,23] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[8851,23] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[8852,23] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[8853,23] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[8854,23] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[9150,35] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[9151,37] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[9169,33] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[9336,26] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/serializable/SerializableTestUtility.java:[460,31] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/serializable/SerializableTestUtility.java:[461,25] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/serializable/SerializableTestUtility.java:[464,37] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/serializable/SerializableTestUtility.java:[465,29] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/serializable/SerializableTestUtility.java:[469,66] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/serializable/SerializableTestUtility.java:[472,38] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/serializable/SerializableTestUtility.java:[653,25] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/serializable/FormatHandler.java:[841,21] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatRegressionTest.java:[80,23] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[150,48] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[269,33] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[401,39] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[456,33] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[468,23] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[769,16] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[856,39] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[959,35] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[1236,20] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[1592,24] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[1622,46] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[1626,26] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TimeZoneFormatTest.java:[167,58] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TimeZoneFormatTest.java:[168,61] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TimeZoneFormatTest.java:[186,79] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TimeZoneFormatTest.java:[201,75] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TimeZoneFormatTest.java:[219,71] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TimeZoneFormatTest.java:[252,75] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TimeZoneFormatTest.java:[266,75] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TimeZoneFormatTest.java:[317,75] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TimeZoneFormatTest.java:[340,83] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TimeZoneFormatTest.java:[358,79] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TimeZoneFormatTest.java:[570,53] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TimeZoneFormatTest.java:[573,65] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TimeZoneFormatTest.java:[591,66] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TimeZoneFormatTest.java:[1103,17] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TimeZoneFormatTest.java:[1179,29] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TimeZoneFormatTest.java:[1180,29] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TimeZoneFormatTest.java:[1258,86] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TimeZoneFormatTest.java:[1284,84] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TimeZoneFormatTest.java:[1311,29] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TimeZoneFormatTest.java:[1312,29] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TimeZoneFormatTest.java:[1340,86] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TimeZoneFormatTest.java:[1390,45] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/message2/Mf2FeaturesTest.java:[30,34] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/serializable/CalendarHandler.java:[60,37] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/CurrencyTest.java:[491,27] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/CurrencyTest.java:[492,28] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/CurrencyTest.java:[498,30] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/CurrencyTest.java:[500,31] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/CurrencyTest.java:[512,34] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/CurrencyTest.java:[512,62] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/CurrencyTest.java:[525,36] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/CurrencyTest.java:[525,65] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/CurrencyTest.java:[780,23] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/CurrencyTest.java:[930,21] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/CurrencyTest.java:[931,21] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/CurrencyTest.java:[932,21] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarCalc.java:[334,31] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarCalc.java:[361,49] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarCalc.java:[398,26] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarCalc.java:[406,42] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarFrame.java:[155,46] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarPanel.java:[73,49] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarPanel.java:[351,33] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/holiday/HolidayCalendarDemo.java:[343,38] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/holiday/HolidayCalendarDemo.java:[388,32] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/holiday/HolidayCalendarDemo.java:[506,31] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/holiday/HolidayCalendarDemo.java:[526,29] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/holiday/HolidayCalendarDemo.java:[526,39] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/samples/src/main/java/com/ibm/icu/samples/text/dateintervalformat/DateIntervalFormatSample.java:[48,44] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/samples/src/main/java/com/ibm/icu/samples/text/dateintervalformat/DateIntervalFormatSample.java:[48,63] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/samples/src/main/java/com/ibm/icu/samples/text/dateintervalformat/DateIntervalFormatSample.java:[49,44] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/samples/src/main/java/com/ibm/icu/samples/text/dateintervalformat/DateIntervalFormatSample.java:[49,63] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/samples/src/main/java/com/ibm/icu/samples/text/dateintervalformat/DateIntervalFormatSample.java:[50,44] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/samples/src/main/java/com/ibm/icu/samples/text/dateintervalformat/DateIntervalFormatSample.java:[50,63] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/samples/src/main/java/com/ibm/icu/samples/text/dateintervalformat/DateIntervalFormatSample.java:[61,65] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/samples/src/main/java/com/ibm/icu/samples/text/dateintervalformat/DateIntervalFormatSample.java:[61,89] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/samples/src/main/java/com/ibm/icu/samples/text/dateintervalformat/DateIntervalFormatSample.java:[100,44] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/samples/src/main/java/com/ibm/icu/samples/text/dateintervalformat/DateIntervalFormatSample.java:[100,63] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/samples/src/main/java/com/ibm/icu/samples/text/dateintervalformat/DateIntervalFormatSample.java:[101,44] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/samples/src/main/java/com/ibm/icu/samples/text/dateintervalformat/DateIntervalFormatSample.java:[101,63] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/samples/src/main/java/com/ibm/icu/samples/text/dateintervalformat/DateIntervalFormatSample.java:[120,69] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/samples/src/main/java/com/ibm/icu/samples/text/dateintervalformat/DateIntervalFormatSample.java:[120,93] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/samples/src/main/java/com/ibm/icu/samples/util/timezone/BasicTimeZoneExample.java:[51,39] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/samples/src/main/java/com/ibm/icu/samples/util/timezone/BasicTimeZoneExample.java:[53,49] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/samples/src/main/java/com/ibm/icu/samples/util/timezone/BasicTimeZoneExample.java:[92,39] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/samples/src/main/java/com/ibm/icu/samples/util/timezone/BasicTimeZoneExample.java:[94,49] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/docs/CollectAPI.java:[44,87] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/docs/CollectAPI.java:[44,68] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/docs/ReportAPI.java:[296,33] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/docs/ReportAPI.java:[298,86] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/docs/ReportAPI.java:[298,67] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/index/IndexGenerator.java:[74,23] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/ModuleWriter.java:[51,25] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/ScriptIDModuleWriter.java:[251,25] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/localeconverter/XLIFF2ICUConverter.java:[1418,25] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/timescale/EpochOffsets.java:[74,31] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/timezone/ICUZDump.java:[155,67] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/timezone/ICUZDump.java:[198,34] Date has a bad API that leads to bugs; prefer java.time.Instant or LocalDate.

[ICU_PRIORITY_1] JdkObsolete (410) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/impl/DateNumberFormat.java:[56,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder buf = new StringBuilder();
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[316,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[326,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[338,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[347,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[356,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[365,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/impl/TextTrieMap.java:[311,28] It is very rare for LinkedList to out-perform ArrayList or ArrayDeque. Avoid it unless you're willing to invest a lot of time into benchmarking. Caveat: LinkedList supports null elements, but ArrayDeque does not.
Did you mean
_children = new ArrayList<Node>();
icu4j/main/core/src/main/java/com/ibm/icu/impl/TextTrieMap.java:[385,24] It is very rare for LinkedList to out-perform ArrayList or ArrayDeque. Avoid it unless you're willing to invest a lot of time into benchmarking. Caveat: LinkedList supports null elements, but ArrayDeque does not.
Did you mean
_children = new ArrayList<Node>();
icu4j/main/core/src/main/java/com/ibm/icu/impl/TextTrieMap.java:[391,23] It is very rare for LinkedList to out-perform ArrayList or ArrayDeque. Avoid it unless you're willing to invest a lot of time into benchmarking. Caveat: LinkedList supports null elements, but ArrayDeque does not.
Did you mean
list = new ArrayList<V>();
icu4j/main/core/src/main/java/com/ibm/icu/impl/IDNA2003.java:[58,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/impl/IDNA2003.java:[178,25] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/impl/IDNA2003.java:[187,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/impl/IDNA2003.java:[276,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/impl/IDNA2003.java:[336,23] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/impl/IDNA2003.java:[341,25] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/impl/IDNA2003.java:[359,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/impl/IDNA2003.java:[420,15] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/impl/IDNA2003.java:[427,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/text/StringPrep.java:[413,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/text/StringPrep.java:[464,15] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/text/StringPrepParseException.java:[195,38] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/text/StringPrepParseException.java:[201,39] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/util/BasicTimeZone.java:[326,43] It is very rare for LinkedList to out-perform ArrayList or ArrayDeque. Avoid it unless you're willing to invest a lot of time into benchmarking. Caveat: LinkedList supports null elements, but ArrayDeque does not.
Did you mean
List<TimeZoneRule> filteredRules = new ArrayList<>();
icu4j/main/core/src/main/java/com/ibm/icu/impl/TimeZoneGenericNames.java:[668,31] It is very rare for LinkedList to out-perform ArrayList or ArrayDeque. Avoid it unless you're willing to invest a lot of time into benchmarking. Caveat: LinkedList supports null elements, but ArrayDeque does not.
Did you mean
_matches = new ArrayList<GenericMatchInfo>();
icu4j/main/core/src/main/java/com/ibm/icu/impl/TimeZoneGenericNames.java:[795,30] It is very rare for LinkedList to out-perform ArrayList or ArrayDeque. Avoid it unless you're willing to invest a lot of time into benchmarking. Caveat: LinkedList supports null elements, but ArrayDeque does not.
Did you mean
results = new ArrayList<GenericMatchInfo>();
icu4j/main/core/src/main/java/com/ibm/icu/text/TimeZoneFormat.java:[1692,34] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[733,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormat.java:[769,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/impl/PatternTokenizer.java:[194,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/impl/PatternTokenizer.java:[265,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder result = new StringBuilder();
icu4j/main/core/src/main/java/com/ibm/icu/impl/PatternTokenizer.java:[266,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/text/SimpleDateFormat.java:[1455,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/text/SimpleDateFormat.java:[1672,47] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/text/SimpleDateFormat.java:[4696,34] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/impl/StringRange.java:[127,36] It is very rare for LinkedList to out-perform ArrayList or ArrayDeque. Avoid it unless you're willing to invest a lot of time into benchmarking. Caveat: LinkedList supports null elements, but ArrayDeque does not.
icu4j/main/core/src/main/java/com/ibm/icu/impl/TZDBTimeZoneNames.java:[317,31] It is very rare for LinkedList to out-perform ArrayList or ArrayDeque. Avoid it unless you're willing to invest a lot of time into benchmarking. Caveat: LinkedList supports null elements, but ArrayDeque does not.
Did you mean
_matches = new ArrayList<MatchInfo>();
icu4j/main/core/src/main/java/com/ibm/icu/impl/TimeZoneNamesImpl.java:[542,31] It is very rare for LinkedList to out-perform ArrayList or ArrayDeque. Avoid it unless you're willing to invest a lot of time into benchmarking. Caveat: LinkedList supports null elements, but ArrayDeque does not.
Did you mean
_matches = new ArrayList<MatchInfo>();
icu4j/main/core/src/main/java/com/ibm/icu/impl/UCharacterName.java:[803,51] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UCharacterName.java:[1015,47] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[676,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[742,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder result = new StringBuilder();
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[981,29] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder b = new StringBuilder();
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeRegex.java:[387,34] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder definition = new StringBuilder();
icu4j/main/core/src/main/java/com/ibm/icu/impl/breakiter/CjkBreakEngine.java:[135,25] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/impl/data/TokenIterator.java:[46,14] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/impl/duration/BasicPeriodFormatter.java:[129,26] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/util/LocalePriorityList.java:[293,58] It is very rare for LinkedList to out-perform ArrayList or ArrayDeque. Avoid it unless you're willing to invest a lot of time into benchmarking. Caveat: LinkedList supports null elements, but ArrayDeque does not.
Did you mean
weightToLanguages.put(weight, s = new ArrayList<>());
icu4j/main/core/src/main/java/com/ibm/icu/text/BidiTransform.java:[310,26] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/text/BidiWriter.java:[53,40] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/text/BidiWriter.java:[83,40] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/text/BidiWriter.java:[123,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/text/CanonicalIterator.java:[333,37] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateIntervalFormat.java:[783,26] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateIntervalFormat.java:[895,26] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[1971,34] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[1972,36] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/text/NFRuleSet.java:[254,32] It is very rare for LinkedList to out-perform ArrayList or ArrayDeque. Avoid it unless you're willing to invest a lot of time into benchmarking. Caveat: LinkedList supports null elements, but ArrayDeque does not.
icu4j/main/core/src/main/java/com/ibm/icu/text/ReplaceableString.java:[32,14] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/text/ReplaceableString.java:[53,14] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/text/SpoofChecker.java:[843,25] Hashtable performs synchronization this is usually unnecessary; prefer LinkedHashMap.
icu4j/main/core/src/main/java/com/ibm/icu/text/SpoofChecker.java:[852,38] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/text/SpoofChecker.java:[978,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/text/SpoofChecker.java:[1114,27] Vector performs synchronization that is usually unnecessary; prefer ArrayList.
icu4j/main/core/src/main/java/com/ibm/icu/text/SpoofChecker.java:[1115,28] Hashtable performs synchronization this is usually unnecessary; prefer LinkedHashMap.
icu4j/main/core/src/main/java/com/ibm/icu/text/UTF16.java:[1961,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder result = new StringBuilder(source);
icu4j/main/core/src/main/java/com/ibm/icu/text/UTF16.java:[2013,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder result = new StringBuilder(source);
icu4j/main/core/src/main/java/com/ibm/icu/text/UTF16.java:[2041,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/main/java/com/ibm/icu/util/StringTokenizer.java:[110,13] Enumeration is an ancient precursor to Iterator.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarTestFmwk.java:[385,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder buf = new StringBuilder();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/TestCase.java:[199,35] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder buf = new StringBuilder();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/ChineseTest.java:[73,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder buf = new StringBuilder();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/ChineseTest.java:[359,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[1046,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder buf = new StringBuilder();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/charsetdet/TestCharsetDetector.java:[61,26] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder sb = new StringBuilder();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/charsetdet/TestCharsetDetector.java:[453,40] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder testText = new StringBuilder();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/charsetdet/TestCharsetDetector.java:[881,37] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/charsetdet/TestCharsetDetector.java:[905,33] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/compression/DecompressionTest.java:[36,25] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder s = new StringBuilder();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/duration/DataReadWriteTest.java:[27,26] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder sb = new StringBuilder();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/duration/LanguageTestFmwk.java:[190,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder buf = new StringBuilder();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/duration/LanguageTestFmwk.java:[213,25] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/BigNumberFormatTest.java:[397,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder buf = new StringBuilder();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatMiscTests.java:[56,35] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[56,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[62,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[73,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[146,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[239,33] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[516,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[541,26] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[655,36] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[662,33] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[723,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[756,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[772,32] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[963,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[1461,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[1543,39] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[1621,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRoundTripTest.java:[251,44] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[2061,34] It is very rare for LinkedList to out-perform ArrayList or ArrayDeque. Avoid it unless you're willing to invest a lot of time into benchmarking. Caveat: LinkedList supports null elements, but ArrayDeque does not.
Did you mean
List<Throwable> allErrs = new ArrayList<>();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[2380,37] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[2491,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[2680,35] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[2918,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3114,47] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3131,37] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3146,47] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3163,37] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3179,37] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3185,37] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3191,37] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3532,38] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3590,34] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3605,46] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[3810,52] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4339,52] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[4345,48] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateTimeGeneratorTest.java:[277,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateTimeGeneratorTest.java:[309,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormat.java:[158,48] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormat.java:[244,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder all = new StringBuilder();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormatAPI.java:[103,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormatAPI.java:[104,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormatAPIC.java:[47,33] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDecimalFormatAPI.java:[160,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDecimalFormatAPI.java:[161,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDecimalFormatAPI.java:[162,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDecimalFormatAPI.java:[163,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDecimalFormatAPI.java:[290,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestNumberFormatAPI.java:[88,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestNumberFormatAPI.java:[89,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestNumberFormatAPI.java:[90,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestNumberFormatAPI.java:[91,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestSimpleDateFormatAPI.java:[80,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestSimpleDateFormatAPI.java:[81,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/JavaTimeFormatTest.java:[410,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/PluralFormatUnitTest.java:[76,26] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/SelectFormatAPITest.java:[145,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/SelectFormatAPITest.java:[154,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/iterator/TestUCharacterIterator.java:[293,47] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterCaseTest.java:[778,41] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder strbuffer = new StringBuilder(chstr[0]);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterCaseTest.java:[779,43] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder lowerbuffer = new StringBuilder(chstr[1]);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterCaseTest.java:[780,43] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder upperbuffer = new StringBuilder(chstr[3]);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterCaseTest.java:[2053,34] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder buffer = new StringBuilder();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterCompare.java:[289,25] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder s = new StringBuilder(temp);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterSurrogateTest.java:[286,25] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterTest.java:[1517,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder str = new StringBuilder(illegalStr);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterTest.java:[1532,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder str = new StringBuilder(legalStr);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UTF16Test.java:[41,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UTF16Test.java:[77,18] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UTF16Test.java:[89,16] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UTF16Test.java:[197,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UTF16Test.java:[257,33] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UTF16Test.java:[264,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UTF16Test.java:[272,18] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UTF16Test.java:[311,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UTF16Test.java:[350,18] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UTF16Test.java:[383,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UTF16Test.java:[536,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UTF16Test.java:[655,26] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UTF16Test.java:[923,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UTF16Test.java:[1006,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UTF16Test.java:[1449,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UTF16Test.java:[1458,34] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UTF16Test.java:[1644,33] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetStringSpanTest.java:[815,25] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[483,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[1712,35] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[2589,29] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder pairs = new StringBuilder();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[2767,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[3319,72] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/message2/CustomFunctionMessageRefTest.java:[106,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/message2/TestFunctionFactory.java:[220,34] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder buffer = new StringBuilder();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/normalizer/ConformanceTest.java:[66,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/normalizer/ConformanceTest.java:[157,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/normalizer/ConformanceTest.java:[335,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/normalizer/ConformanceTest.java:[564,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/normalizer/UnicodeNormalizer.java:[68,33] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/normalizer/UnicodeNormalizer.java:[88,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/normalizer/NormalizerBuilder.java:[432,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/normalizer/NormalizerBuilder.java:[509,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder result = new StringBuilder();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/normalizer/TestDeprecatedNormalizerAPI.java:[95,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/normalizer/TestDeprecatedNormalizerAPI.java:[118,29] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/normalizer/UnicodeNormalizerConformanceTest.java:[56,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/normalizer/UnicodeNormalizerConformanceTest.java:[259,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/BreakIteratorRegTest.java:[122,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder buf = new StringBuilder(ci.getEndIndex() - ci.getBeginIndex() + 2);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/BreakIteratorTest.java:[33,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder work = new StringBuilder("a\r\na");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/BreakIteratorTest.java:[86,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder out = new StringBuilder();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/RBBITest.java:[161,43] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder buildString = new StringBuilder(4 * maxOffsetCount);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/RBBITestMonkey.java:[1445,32] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/shaping/DataDrivenArabicShapingRegTest.java:[419,35] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder buf = new StringBuilder();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/shaping/DataDrivenArabicShapingRegTest.java:[456,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder buf = new StringBuilder(str.length() * 6);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/IDNAConformanceTest.java:[215,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder result = new StringBuilder();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/IDNAConformanceTest.java:[217,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/IDNAConformanceTest.java:[220,25] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/IDNAReference.java:[62,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/IDNAReference.java:[156,25] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/IDNAReference.java:[164,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/IDNAReference.java:[259,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/IDNAReference.java:[326,29] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/IDNAReference.java:[338,57] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/IDNAReference.java:[355,15] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/IDNAReference.java:[372,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/NamePrepTransform.java:[185,15] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/NFS4StringPrep.java:[130,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder out = new StringBuilder();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/PunycodeReference.java:[226,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/PunycodeReference.java:[279,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[140,29] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[220,29] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[299,29] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[397,29] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[624,34] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[624,56] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[659,33] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[659,55] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[688,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder source = new StringBuilder(www);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[689,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder uni0 = new StringBuilder(www);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[690,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder uni1 = new StringBuilder(www);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[691,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder ascii0 = new StringBuilder(www);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[692,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder ascii1 = new StringBuilder(www);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[809,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder source = new StringBuilder(www);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[810,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder uni0 = new StringBuilder(www);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[811,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder uni1 = new StringBuilder(www);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[812,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder ascii0 = new StringBuilder(www);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[813,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder ascii1 = new StringBuilder(www);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[899,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[910,17] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[919,16] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[922,32] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder expected = new StringBuilder("xn--b1abfaaepdrnnbgefbadotcwatmq2g4l");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[1238,40] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[1260,39] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[1280,42] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[1332,46] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[1338,25] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[1344,29] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[1344,56] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneAliasTest.java:[136,34] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder result = new StringBuilder();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[730,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder buf = new StringBuilder("TimeZone.getAvailableIDs() = { ");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/FieldsSet.java:[84,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder str = new StringBuilder();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/LocaleDistanceTest.java:[141,47] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/StringTokenizerTest.java:[576,26] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/TextTrieMapTest.java:[101,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder textBuf = new StringBuilder();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/TextTrieMapTest.java:[161,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder textBuf = new StringBuilder();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/TrieTest.java:[118,25] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/collate/src/main/java/com/ibm/icu/text/Collator.java:[1028,36] It is very rare for LinkedList to out-perform ArrayList or ArrayDeque. Avoid it unless you're willing to invest a lot of time into benchmarking. Caveat: LinkedList supports null elements, but ArrayDeque does not.
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetProviderICU.java:[275,30] It is very rare for LinkedList to out-perform ArrayList or ArrayDeque. Avoid it unless you're willing to invest a lot of time into benchmarking. Caveat: LinkedList supports null elements, but ArrayDeque does not.
Did you mean
List<Charset> icucs = new ArrayList<Charset>();
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[279,37] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[375,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[4687,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[4749,32] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[6326,26] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder sb = new StringBuilder();
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[6563,37] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder locStrBuf = new StringBuilder();
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[6673,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[6786,43] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[6787,39] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[6788,39] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[7052,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[7382,38] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[7600,38] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[7707,37] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[7892,35] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[7992,35] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[8319,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[9172,44] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[9179,48] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[9185,48] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[9192,44] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/IntlTestDecimalFormatAPIC.java:[102,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/IntlTestDecimalFormatAPIC.java:[103,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/IntlTestDecimalFormatAPIC.java:[104,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/IntlTestDecimalFormatAPIC.java:[105,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/IntlTestDecimalFormatSymbolsC.java:[132,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/MeasureUnitTest.java:[816,56] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/MeasureUnitTest.java:[821,54] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[427,14] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[435,14] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[462,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[468,14] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[748,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder pat = new StringBuilder("");
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[2337,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[2704,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[2718,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[2732,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[2746,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[2762,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[2768,32] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[2775,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[2782,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[2788,32] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[2795,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[2801,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[2808,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[2816,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[2825,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[2834,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[2842,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[2851,32] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[2863,32] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[3124,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[3136,40] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[3177,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[3188,40] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[3729,34] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[3795,26] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[3892,26] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[5820,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[6027,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[6612,26] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[8094,26] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[8316,34] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[8329,34] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberRegressionTests.java:[92,29] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberRegressionTests.java:[98,29] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberRegressionTests.java:[114,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberRegressionTests.java:[115,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberRegressionTests.java:[142,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberRegressionTests.java:[314,26] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberRegressionTests.java:[335,21] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberRegressionTests.java:[779,33] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberRegressionTests.java:[821,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberRegressionTests.java:[876,43] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberRegressionTests.java:[890,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberRegressionTests.java:[956,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder buf = new StringBuilder(pattern);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberRegressionTests.java:[1206,40] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberRegressionTests.java:[1207,40] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/PluralRulesTest.java:[1435,54] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/RbnfTest.java:[1030,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[103,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[213,34] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[252,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[289,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[312,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[403,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[458,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[858,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[961,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[1077,29] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[1092,35] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[1729,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder buf = new StringBuilder();
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[1952,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[1970,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[2005,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[2084,62] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[2088,58] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[2209,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[2221,26] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TimeZoneFormatTest.java:[580,55] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder msg = new StringBuilder();
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TimeZoneFormatTest.java:[1373,26] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TimeZoneFormatTest.java:[1387,13] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TimeZoneFormatTest.java:[1400,13] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/normalizer/BasicTest.java:[756,35] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/normalizer/BasicTest.java:[762,35] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/normalizer/BasicTest.java:[1311,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/normalizer/BasicTest.java:[1644,18] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/normalizer/BasicTest.java:[1706,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/number/NumberFormatterApiTest.java:[6411,26] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/serializable/SerializableWriter.java:[38,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder result = new StringBuilder("ICU_");
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNARef.java:[192,29] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNARef.java:[279,29] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNARef.java:[364,29] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNARef.java:[467,29] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNARef.java:[741,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNARef.java:[741,50] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNARef.java:[777,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNARef.java:[778,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNARef.java:[808,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder source = new StringBuilder(www);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNARef.java:[809,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder uni0 = new StringBuilder(www);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNARef.java:[810,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder uni1 = new StringBuilder(www);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNARef.java:[811,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder ascii0 = new StringBuilder(www);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNARef.java:[812,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder ascii1 = new StringBuilder(www);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNARef.java:[946,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder source = new StringBuilder(www);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNARef.java:[947,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder uni0 = new StringBuilder(www);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNARef.java:[948,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder uni1 = new StringBuilder(www);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNARef.java:[949,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder ascii0 = new StringBuilder(www);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNARef.java:[950,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder ascii1 = new StringBuilder(www);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ICUServiceTest.java:[444,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder buf = new StringBuilder("{");
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ICUServiceTest.java:[461,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder buf = new StringBuilder("{");
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/CaseIterator.java:[878,38] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/Demo.java:[464,46] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder buffer = new StringBuilder();
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/Demo.java:[1492,18] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/TransliteratingTextComponent.java:[241,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder buf = new StringBuilder();
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/TransliterationChart.java:[224,26] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder sb = new StringBuilder();
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/ClassTable.java:[116,24] Vector performs synchronization that is usually unnecessary; prefer ArrayList.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/ClassTable.java:[155,29] Vector performs synchronization that is usually unnecessary; prefer ArrayList.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/OpenTypeTableWriter.java:[44,32] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/BuildMirroringTables.java:[28,28] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder line = new StringBuilder(" ");
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/LigatureTree.java:[66,34] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder result = new StringBuilder();
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/CanonicalCharacterData.java:[27,28] Vector performs synchronization that is usually unnecessary; prefer ArrayList.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/CanonicalCharacterData.java:[116,51] Vector performs synchronization that is usually unnecessary; prefer ArrayList.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/DecompTable.java:[88,23] Vector performs synchronization that is usually unnecessary; prefer ArrayList.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/LigatureTreeWalker.java:[31,23] Vector performs synchronization that is usually unnecessary; prefer ArrayList.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/LigatureTreeWalker.java:[53,26] Vector performs synchronization that is usually unnecessary; prefer ArrayList.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/OpenTypeTagBuilder.java:[39,30] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder result = new StringBuilder();
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/ScriptData.java:[129,20] Vector performs synchronization that is usually unnecessary; prefer ArrayList.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/ScriptRunModuleWriter.java:[59,53] Vector performs synchronization that is usually unnecessary; prefer ArrayList.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/ThaiStateTable.java:[132,21] Vector performs synchronization that is usually unnecessary; prefer ArrayList.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/localeconverter/XLIFF2ICUConverter.java:[704,34] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder result = new StringBuilder();
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/timezone/ICUZDump.java:[195,31] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder buf = new StringBuilder();
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/translit/Trans.java:[93,35] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder buf = new StringBuilder();
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/translit/UnicodeSetCloseOver.java:[129,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder buf = new StringBuilder();
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/translit/UnicodeSetCloseOver.java:[132,23] Vector performs synchronization that is usually unnecessary; prefer ArrayList.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/translit/UnicodeSetCloseOver.java:[173,29] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/translit/UnicodeSetCloseOver.java:[177,26] Vector performs synchronization that is usually unnecessary; prefer ArrayList.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/translit/UnicodeSetCloseOver.java:[178,25] Vector performs synchronization that is usually unnecessary; prefer ArrayList.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/translit/UnicodeSetCloseOver.java:[441,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/translit/UnicodeSetCloseOver.java:[466,27] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/translit/WriteIndicCharts.java:[142,51] StringBuffer performs synchronization that is usually unnecessary; prefer StringBuilder.
Did you mean
StringBuilder nameBuf = new StringBuilder();
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/translit/WriteIndicCharts.java:[404,29] Hashtable performs synchronization this is usually unnecessary; prefer LinkedHashMap.

[ICU_PRIORITY_2] LabelledBreakTarget (8) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/text/UnicodeSet.java:[1084,8] Labels should only be used on loops.
icu4j/main/core/src/main/java/com/ibm/icu/number/NumberSkeletonImpl.java:[1242,12] Labels should only be used on loops.
icu4j/main/core/src/main/java/com/ibm/icu/text/CharsetRecog_mbcs.java:[53,8] Labels should only be used on loops.
icu4j/main/core/src/main/java/com/ibm/icu/text/CharsetRecog_mbcs.java:[319,12] Labels should only be used on loops.
icu4j/main/core/src/main/java/com/ibm/icu/text/CharsetRecog_mbcs.java:[466,12] Labels should only be used on loops.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneAliasTest.java:[313,12] Labels should only be used on loops.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/charsetdet/mbcs/BIG5Tool.java:[303,8] Labels should only be used on loops.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/charsetdet/mbcs/EUCTool.java:[307,8] Labels should only be used on loops.

[ICU_PRIORITY_2] LockOnNonEnclosingClassLiteral (2) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[959,12] Lock on the class other than the enclosing class of the code block can unintentionally prevent the locked class being used properly.
icu4j/main/translit/src/main/java/com/ibm/icu/text/CaseFoldTransliterator.java:[108,8] Lock on the class other than the enclosing class of the code block can unintentionally prevent the locked class being used properly.

[WARNING] LongDoubleConversion (10) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/text/PluralRules.java:[809,17] Conversion from long to double may lose precision; use an explicit cast to double if this was intentional
Did you mean
this((double) n, 0);
icu4j/main/core/src/main/java/com/ibm/icu/text/PluralRules.java:[1566,54] Conversion from long to double may lose precision; use an explicit cast to double if this was intentional
Did you mean
lowBound = Math.min(lowBound, (double) low);
icu4j/main/core/src/main/java/com/ibm/icu/text/PluralRules.java:[1567,56] Conversion from long to double may lose precision; use an explicit cast to double if this was intentional
Did you mean
highBound = Math.max(highBound, (double) high);
icu4j/main/core/src/main/java/com/ibm/icu/text/PluralRules.java:[1821,47] Conversion from long to double may lose precision; use an explicit cast to double if this was intentional
Did you mean
addRange(result, (double) range_list[i], range_list[i + 1], i != 0);
icu4j/main/core/src/main/java/com/ibm/icu/text/PluralRules.java:[1821,62] Conversion from long to double may lose precision; use an explicit cast to double if this was intentional
Did you mean
addRange(result, range_list[i], (double) range_list[i + 1], i != 0);
icu4j/main/core/src/main/java/com/ibm/icu/text/NFRule.java:[542,45] Conversion from long to double may lose precision; use an explicit cast to double if this was intentional
Did you mean
short tempResult = (short) (Math.log((double) baseValue) / Math.log(radix));
icu4j/main/core/src/main/java/com/ibm/icu/text/NFRule.java:[738,69] Conversion from long to double may lose precision; use an explicit cast to double if this was intentional
Did you mean
toInsertInto.insert(pos, rulePatternFormat.format((double) (number / power(radix, exponent))));
icu4j/main/core/src/main/java/com/ibm/icu/text/NFRule.java:[794,62] Conversion from long to double may lose precision; use an explicit cast to double if this was intentional
Did you mean
toInsertInto.insert(pos, rulePatternFormat.format((double) (long) (pluralVal)));
icu4j/main/core/src/main/java/com/ibm/icu/text/NFRuleSet.java:[525,43] Conversion from long to double may lose precision; use an explicit cast to double if this was intentional
Did you mean
return findFractionRuleSetRule((double) number);
icu4j/main/core/src/main/java/com/ibm/icu/text/NFSubstitution.java:[727,40] Conversion from long to double may lose precision; use an explicit cast to double if this was intentional
Did you mean
return (long) Math.floor((double) (number / divisor));

[WARNING] LoopOverCharArray (1) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[2962,12] toCharArray allocates a new array, using charAt is more efficient
Did you mean
for (int i = 0; i < value.length(); i++) { char ch = value.charAt(i);assert ch == value.charAt(0);

[WARNING] MalformedInlineTag (11) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/impl/CSCharacterIterator.java:[30,7] The correct syntax to open this inline tag is {@inheritDoc.
Did you mean
* {@inheritDoc}
icu4j/main/core/src/main/java/com/ibm/icu/impl/CSCharacterIterator.java:[39,7] The correct syntax to open this inline tag is {@inheritDoc.
Did you mean
* {@inheritDoc}
icu4j/main/core/src/main/java/com/ibm/icu/impl/CSCharacterIterator.java:[48,7] The correct syntax to open this inline tag is {@inheritDoc.
Did you mean
* {@inheritDoc}
icu4j/main/core/src/main/java/com/ibm/icu/impl/CSCharacterIterator.java:[59,7] The correct syntax to open this inline tag is {@inheritDoc.
Did you mean
* {@inheritDoc}
icu4j/main/core/src/main/java/com/ibm/icu/impl/CSCharacterIterator.java:[70,7] The correct syntax to open this inline tag is {@inheritDoc.
Did you mean
* {@inheritDoc}
icu4j/main/core/src/main/java/com/ibm/icu/impl/CSCharacterIterator.java:[82,7] The correct syntax to open this inline tag is {@inheritDoc.
Did you mean
* {@inheritDoc}
icu4j/main/core/src/main/java/com/ibm/icu/impl/CSCharacterIterator.java:[94,7] The correct syntax to open this inline tag is {@inheritDoc.
Did you mean
* {@inheritDoc}
icu4j/main/core/src/main/java/com/ibm/icu/impl/CSCharacterIterator.java:[102,7] The correct syntax to open this inline tag is {@inheritDoc.
Did you mean
* {@inheritDoc}
icu4j/main/core/src/main/java/com/ibm/icu/impl/CSCharacterIterator.java:[110,7] The correct syntax to open this inline tag is {@inheritDoc.
Did you mean
* {@inheritDoc}
icu4j/main/core/src/main/java/com/ibm/icu/impl/CSCharacterIterator.java:[118,7] The correct syntax to open this inline tag is {@inheritDoc.
Did you mean
* {@inheritDoc}
icu4j/main/core/src/main/java/com/ibm/icu/util/MutableCodePointTrie.java:[18,73] The correct syntax to open this inline tag is {@link.
Did you mean
* merge its values with those from another set of ranges (e.g., another {@link CodePointMap}):

[WARNING] MissingCasesInEnumSwitch (3) 🔗

File and line number Message
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/AlphabeticIndexTest.java:[2415,12] Non-exhaustive switch; either add a default or handle the remaining cases: NORMAL
icu4j/samples/src/main/java/com/ibm/icu/samples/text/messagepattern/MessagePatternUtilDemo.java:[80,12] Non-exhaustive switch; either add a default or handle the remaining cases: NONE, SIMPLE, SELECTORDINAL
icu4j/samples/src/main/java/com/ibm/icu/samples/text/messagepattern/MessagePatternUtilDemo.java:[171,8] Non-exhaustive switch; either add a default or handle the remaining cases: SELECTORDINAL

[ICU_PRIORITY_1] MissingFail (24) 🔗

File and line number Message
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/message2/MessageFormat2Test.java:[695,12] Not calling fail() when expecting an exception masks bugs
Did you mean
IllegalArgumentException e = assertThrows(IllegalArgumentException.class, () -> {mf =' or 'errln("error expected");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/message2/MessageFormat2Test.java:[716,12] Not calling fail() when expecting an exception masks bugs
Did you mean
IllegalArgumentException e = assertThrows(IllegalArgumentException.class, () -> {mf =' or 'errln("error expected");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/message2/MessageFormat2Test.java:[741,12] Not calling fail() when expecting an exception masks bugs
Did you mean
IllegalArgumentException e = assertThrows(IllegalArgumentException.class, () -> {mf =' or 'errln("error expected");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/LocalePriorityListTest.java:[84,12] Not calling fail() when expecting an exception masks bugs
Did you mean
assertThrows(IllegalArgumentException.class, () -> {LocalePriorityList.add("de;q=-0.1");' or 'errln("negative accept-language qvalue should fail");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/LocalePriorityListTest.java:[90,12] Not calling fail() when expecting an exception masks bugs
Did you mean
assertThrows(IllegalArgumentException.class, () -> {LocalePriorityList.add("de;q=1.001");' or 'errln("accept-language qvalue > 1 should fail");
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationAPITest.java:[894,12] Not calling fail() when expecting an exception masks bugs
Did you mean
assertThrows(UnsupportedOperationException.class, () -> col1.setDecomposition(Collator.CANONICAL_DECOMPOSITION));' or 'col1.setDecomposition(Collator.CANONICAL_DECOMPOSITION);
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationAPITest.java:[902,12] Not calling fail() when expecting an exception masks bugs
Did you mean
assertThrows(UnsupportedOperationException.class, () -> col1.setMaxVariable(Collator.ReorderCodes.CURRENCY));' or 'col1.setMaxVariable(Collator.ReorderCodes.CURRENCY);
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationAPITest.java:[910,12] Not calling fail() when expecting an exception masks bugs
Did you mean
assertThrows(UnsupportedOperationException.class, () -> col1.setReorderCodes(0, 1, 2));' or 'col1.setReorderCodes(0, 1, 2);
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationAPITest.java:[914,12] Not calling fail() when expecting an exception masks bugs
Did you mean
assertThrows(UnsupportedOperationException.class, () -> col1.getReorderCodes());' or 'col1.getReorderCodes();
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationAPITest.java:[933,12] Not calling fail() when expecting an exception masks bugs
Did you mean
assertThrows(UnsupportedOperationException.class, () -> {col2.freeze();' or 'assertTrue("now frozen", col2.isFrozen());
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationAPITest.java:[945,12] Not calling fail() when expecting an exception masks bugs
Did you mean
assertThrows(UnsupportedOperationException.class, () -> {Collator col3 = col2.cloneAsThawed();' or 'assertFalse("!cloneAsThawed().isFrozen()", col3.isFrozen());
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationAPITest.java:[1037,12] Not calling fail() when expecting an exception masks bugs
Did you mean
assertThrows(IllegalArgumentException.class, () -> {coll.setVariableTop("A");' or 'errln("setVariableTop(letter) did not detect illegal argument");
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationAPITest.java:[1080,12] Not calling fail() when expecting an exception masks bugs
Did you mean
assertThrows(IllegalArgumentException.class, () -> {coll.setMaxVariable(Collator.ReorderCodes.OTHERS);' or 'errln("setMaxVariable(others) did not detect illegal argument");
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationAPITest.java:[1724,12] Not calling fail() when expecting an exception masks bugs
Did you mean
errln("Collator.getInstance(" + localeID + ") did not fail as expected");
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationAPITest.java:[1734,12] Not calling fail() when expecting an exception masks bugs
Did you mean
errln("Collator.getInstance(" + localeID + ") did not fail as expected");
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationAPITest.java:[1743,12] Not calling fail() when expecting an exception masks bugs
Did you mean
errln("Collator.getInstance(" + localeID + ") did not fail as expected");
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationAPITest.java:[1759,12] Not calling fail() when expecting an exception masks bugs
Did you mean
errln("no exception for primary-gap overflow");
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationMiscTest.java:[1790,12] Not calling fail() when expecting an exception masks bugs
Did you mean
assertThrows(Exception.class, () -> {coll.setVariableTop("@P");' or 'errln("Invalid contraction succeeded in setting variable top!");
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationRegressionTest.java:[1309,30] Not calling fail() when expecting an exception masks bugs
Did you mean
assertThrows(Exception.class, () -> {RuleBasedCollator coll = new RuleBasedCollator(rule);});' or 'RuleBasedCollator coll = new RuleBasedCollator(rule);
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationRegressionTest.java:[1320,12] Not calling fail() when expecting an exception masks bugs
Did you mean
assertThrows(Exception.class, () -> {new RuleBasedCollator("&[before 2]x<<q<p");' or 'errln("should forbid before-2-reset followed by primary relation");
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationRegressionTest.java:[1325,12] Not calling fail() when expecting an exception masks bugs
Did you mean
assertThrows(Exception.class, () -> {new RuleBasedCollator("&[before 3]x<<<q<<s<p");' or 'errln("should forbid before-3-reset followed by primary or secondary relation");
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TimeZoneFormatTest.java:[1606,12] Not calling fail() when expecting an exception masks bugs
Did you mean
UnsupportedOperationException e = assertThrows(UnsupportedOperationException.class, () -> tzn.find(null, 0, null));' or 'tzn.find(null, 0, null);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/number/NumberFormatterApiTest.java:[3618,12] Not calling fail() when expecting an exception masks bugs
Did you mean
Exception e = assertThrows(Exception.class, () -> NumberFormatter.with()' or '.format(randomNumber);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/number/NumberFormatterApiTest.java:[3630,12] Not calling fail() when expecting an exception masks bugs
Did you mean
Exception e = assertThrows(Exception.class, () -> NumberFormatter.with()' or '.format(randomNumber);

[WARNING] MissingImplementsComparable (5) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/text/PluralRules.java:[2790,15] Classes implementing valid compareTo function should implement Comparable interface
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[3032,19] Classes implementing valid compareTo function should implement Comparable interface
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/ClassTable.java:[36,19] Classes implementing valid compareTo function should implement Comparable interface
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/DecompTable.java:[58,19] Classes implementing valid compareTo function should implement Comparable interface
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/ScriptData.java:[51,19] Classes implementing valid compareTo function should implement Comparable interface

[WARNING] MissingOverride [Style] (470) 🔗

File and line number Message
icu4j/tools/taglets/src/main/java/com/ibm/icu/dev/tool/docs/ICUTaglet.java:[48,19] isInlineTag implements method in Taglet; expected @Override
Did you mean
@Override public boolean isInlineTag() {
icu4j/tools/taglets/src/main/java/com/ibm/icu/dev/tool/docs/ICUTaglet.java:[52,18] getName implements method in Taglet; expected @Override
Did you mean
@Override public String getName() {
icu4j/tools/taglets/src/main/java/com/ibm/icu/dev/tool/docs/ICUCategoryTaglet.java:[21,18] toStringDocTree implements method in ICUTaglet; expected @Override
Did you mean
@Override public String toStringDocTree(DocTree tag, Element element) {
icu4j/tools/taglets/src/main/java/com/ibm/icu/dev/tool/docs/ICUDiscouragedTaglet.java:[21,18] toStringDocTree implements method in ICUTaglet; expected @Override
Did you mean
@Override public String toStringDocTree(DocTree tag, Element element) {
icu4j/tools/taglets/src/main/java/com/ibm/icu/dev/tool/docs/ICUDraftTaglet.java:[21,18] toStringDocTree implements method in ICUTaglet; expected @Override
Did you mean
@Override public String toStringDocTree(DocTree tag, Element element) {
icu4j/tools/taglets/src/main/java/com/ibm/icu/dev/tool/docs/ICUEnhancedTaglet.java:[36,18] toStringDocTree implements method in ICUTaglet; expected @Override
Did you mean
@Override public String toStringDocTree(DocTree tag, Element element) {
icu4j/tools/taglets/src/main/java/com/ibm/icu/dev/tool/docs/ICUInternalTaglet.java:[22,18] toStringDocTree implements method in ICUTaglet; expected @Override
Did you mean
@Override public String toStringDocTree(DocTree tag, Element element) {
icu4j/tools/taglets/src/main/java/com/ibm/icu/dev/tool/docs/ICUNewTaglet.java:[32,18] toStringDocTree implements method in ICUTaglet; expected @Override
Did you mean
@Override public String toStringDocTree(DocTree tag, Element element) {
icu4j/tools/taglets/src/main/java/com/ibm/icu/dev/tool/docs/ICUNoteTaglet.java:[26,18] toStringDocTree implements method in ICUTaglet; expected @Override
Did you mean
@Override public String toStringDocTree(DocTree tag, Element element) {
icu4j/tools/taglets/src/main/java/com/ibm/icu/dev/tool/docs/ICUObsoleteTaglet.java:[23,18] toStringDocTree implements method in ICUTaglet; expected @Override
Did you mean
@Override public String toStringDocTree(DocTree tag, Element element) {
icu4j/tools/taglets/src/main/java/com/ibm/icu/dev/tool/docs/ICUProvisionalTaglet.java:[21,18] toStringDocTree implements method in ICUTaglet; expected @Override
Did you mean
@Override public String toStringDocTree(DocTree tag, Element element) {
icu4j/tools/taglets/src/main/java/com/ibm/icu/dev/tool/docs/ICUStableTaglet.java:[21,18] toStringDocTree implements method in ICUTaglet; expected @Override
Did you mean
@Override public String toStringDocTree(DocTree tag, Element element) {
icu4j/tools/taglets/src/main/java/com/ibm/icu/dev/tool/docs/ICUSummaryTaglet.java:[17,18] toStringDocTree implements method in ICUTaglet; expected @Override
Did you mean
@Override public String toStringDocTree(DocTree tag, Element element) {
icu4j/tools/taglets/src/main/java/com/ibm/icu/dev/tool/docs/ICUTestTaglet.java:[17,18] toStringDocTree implements method in ICUTaglet; expected @Override
Did you mean
@Override public String toStringDocTree(DocTree tag, Element element) {
icu4j/main/core/src/main/java/com/ibm/icu/util/Region.java:[616,18] toString overrides method in Object; expected @Override
Did you mean
@Override public String toString() {
icu4j/main/core/src/main/java/com/ibm/icu/util/Region.java:[647,15] compareTo implements method in Comparable; expected @Override
Did you mean
@Override public int compareTo(Region other) {
icu4j/main/core/src/main/java/com/ibm/icu/util/StringTokenizer.java:[431,19] hasMoreElements implements method in Enumeration; expected @Override
Did you mean
@Override public boolean hasMoreElements() {
icu4j/main/core/src/main/java/com/ibm/icu/util/StringTokenizer.java:[445,18] nextElement implements method in Enumeration; expected @Override
Did you mean
@Override public Object nextElement() {
icu4j/main/core/src/main/java/com/ibm/icu/util/TaiwanCalendar.java:[187,18] handleGetExtendedYear overrides method in GregorianCalendar; expected @Override
Did you mean
@Override protected int handleGetExtendedYear() {
icu4j/main/core/src/main/java/com/ibm/icu/util/TaiwanCalendar.java:[210,19] handleComputeFields overrides method in GregorianCalendar; expected @Override
Did you mean
@Override protected void handleComputeFields(int julianDay) {
icu4j/main/core/src/main/java/com/ibm/icu/util/TaiwanCalendar.java:[229,18] handleGetLimit overrides method in GregorianCalendar; expected @Override
Did you mean
@Override protected int handleGetLimit(int field, int limitType) {
icu4j/main/core/src/main/java/com/ibm/icu/util/TaiwanCalendar.java:[245,18] getType overrides method in GregorianCalendar; expected @Override
Did you mean
@Override public String getType() {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/Launcher.java:[64,36] windowClosing overrides method in WindowAdapter; expected @Override
Did you mean
@Override public void windowClosing(WindowEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/Launcher.java:[137,20] actionPerformed implements method in ActionListener; expected @Override
Did you mean
@Override public void actionPerformed(ActionEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/Launcher.java:[179,20] createDemoFrame implements method in DemoApplet; expected @Override
Did you mean
@Override protected Frame createDemoFrame(DemoApplet applet) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/DemoApplet.java:[32,16] init overrides method in Applet; expected @Override
Did you mean
@Override public void init() {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/DemoApplet.java:[40,32] actionPerformed implements method in ActionListener; expected @Override
Did you mean
@Override public void actionPerformed(ActionEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarApp.java:[30,17] createDemoFrame implements method in DemoApplet; expected @Override
Did you mean
@Override public Frame createDemoFrame(DemoApplet applet) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarCalc.java:[61,17] createDemoFrame implements method in DemoApplet; expected @Override
Did you mean
@Override public Frame createDemoFrame(DemoApplet applet) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarCalc.java:[173,36] actionPerformed implements method in ActionListener; expected @Override
Did you mean
@Override public void actionPerformed(ActionEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarCalc.java:[281,36] itemStateChanged implements method in ItemListener; expected @Override
Did you mean
@Override public void itemStateChanged(ItemEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarCalc.java:[421,16] actionPerformed implements method in ActionListener; expected @Override
Did you mean
@Override public void actionPerformed(ActionEvent evt) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarCalc.java:[439,19] processKeyEvent overrides method in Component; expected @Override
Did you mean
@Override protected void processKeyEvent(KeyEvent evt) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarCalc.java:[454,19] processWindowEvent overrides method in Window; expected @Override
Did you mean
@Override protected void processWindowEvent(WindowEvent evt) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarFrame.java:[69,32] windowClosing overrides method in WindowAdapter; expected @Override
Did you mean
@Override public void windowClosing(WindowEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarFrame.java:[154,32] actionPerformed implements method in ActionListener; expected @Override
Did you mean
@Override public void actionPerformed(ActionEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarFrame.java:[203,36] itemStateChanged implements method in ItemListener; expected @Override
Did you mean
@Override public void itemStateChanged(ItemEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarFrame.java:[278,20] itemStateChanged implements method in ItemListener; expected @Override
Did you mean
@Override @SuppressWarnings("ReferenceEquality")
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarFrame.java:[322,20] actionPerformed implements method in ActionListener; expected @Override
Did you mean
@Override public void actionPerformed(ActionEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarFrame.java:[356,20] setFont overrides method in Component; expected @Override
Did you mean
@Override public void setFont(Font f) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarFrame.java:[361,20] paint overrides method in Component; expected @Override
Did you mean
@Override public void paint(Graphics g) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarFrame.java:[374,25] getPreferredSize overrides method in Component; expected @Override
Did you mean
@Override public Dimension getPreferredSize() {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarFrame.java:[378,25] getMinimumSize overrides method in Component; expected @Override
Did you mean
@Override public Dimension getMinimumSize() {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarPanel.java:[34,16] setLocale overrides method in Component; expected @Override
Did you mean
@Override public void setLocale(Locale locale) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarPanel.java:[186,16] paint overrides method in Canvas; expected @Override
Did you mean
@Override public void paint(Graphics g) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/charsetdet/DetectingViewer.java:[90,32] windowClosing overrides method in WindowAdapter; expected @Override
Did you mean
@Override public void windowClosing(WindowEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/charsetdet/DetectingViewer.java:[99,16] actionPerformed implements method in ActionListener; expected @Override
Did you mean
@Override public void actionPerformed(ActionEvent event) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/holiday/HolidayBorderPanel.java:[188,18] getInsets overrides method in Container; expected @Override
Did you mean
@Override public Insets getInsets() {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/holiday/HolidayBorderPanel.java:[365,16] paint overrides method in Container; expected @Override
Did you mean
@Override public void paint(Graphics g) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/holiday/HolidayBorderPanel.java:[489,18] toString overrides method in Component; expected @Override
Did you mean
@Override public String toString() {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/holiday/HolidayCalendarDemo.java:[61,17] createDemoFrame implements method in DemoApplet; expected @Override
Did you mean
@Override public Frame createDemoFrame(DemoApplet applet) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/holiday/HolidayCalendarDemo.java:[329,20] actionPerformed implements method in ActionListener; expected @Override
Did you mean
@Override public void actionPerformed(ActionEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/holiday/HolidayCalendarDemo.java:[349,20] itemStateChanged implements method in ItemListener; expected @Override
Did you mean
@Override public void itemStateChanged(ItemEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/holiday/HolidayCalendarDemo.java:[367,23] processWindowEvent overrides method in Window; expected @Override
Did you mean
@Override protected void processWindowEvent(WindowEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/holiday/HolidayCalendarDemo.java:[554,20] paint overrides method in Canvas; expected @Override
Did you mean
@Override public void paint(Graphics g) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/AppletFrame.java:[79,32] windowClosing overrides method in WindowAdapter; expected @Override
Did you mean
@Override public void windowClosing(WindowEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/AppletFrame.java:[91,16] appletResize implements method in AppletStub; expected @Override
Did you mean
@Override public void appletResize(int width, int height) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/AppletFrame.java:[95,25] getAppletContext implements method in AppletStub; expected @Override
Did you mean
@Override public AppletContext getAppletContext() {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/AppletFrame.java:[99,15] getCodeBase implements method in AppletStub; expected @Override
Did you mean
@Override public URL getCodeBase() {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/AppletFrame.java:[103,15] getDocumentBase implements method in AppletStub; expected @Override
Did you mean
@Override public URL getDocumentBase() {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/AppletFrame.java:[107,18] getParameter implements method in AppletStub; expected @Override
Did you mean
@Override public String getParameter(String name) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/AppletFrame.java:[111,19] isActive overrides method in Window; expected @Override
Did you mean
@Override public boolean isActive() {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/AppletFrame.java:[116,18] getApplet implements method in AppletContext; expected @Override
Did you mean
@Override public Applet getApplet(String name) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/AppletFrame.java:[120,23] getApplets implements method in AppletContext; expected @Override
Did you mean
@Override public Enumeration getApplets() {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/AppletFrame.java:[124,21] getAudioClip implements method in AppletContext; expected @Override
Did you mean
@Override public AudioClip getAudioClip(URL url) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/AppletFrame.java:[128,17] getImage implements method in AppletContext; expected @Override
Did you mean
@Override public Image getImage(URL url) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/AppletFrame.java:[132,16] showDocument implements method in AppletContext; expected @Override
Did you mean
@Override public void showDocument(URL url) {}
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/AppletFrame.java:[134,16] showDocument implements method in AppletContext; expected @Override
Did you mean
@Override public void showDocument(URL url, String target) {}
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/AppletFrame.java:[136,16] showStatus implements method in AppletContext; expected @Override
Did you mean
@Override public void showStatus(String status) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/AppletFrame.java:[140,16] setStream implements method in AppletContext; expected @Override
Did you mean
@Override public void setStream(String key, InputStream stream) throws IOException {}
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/AppletFrame.java:[142,23] getStream implements method in AppletContext; expected @Override
Did you mean
@Override public InputStream getStream(String key) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/AppletFrame.java:[146,20] getStreamKeys implements method in AppletContext; expected @Override
Did you mean
@Override public Iterator getStreamKeys() {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/DumbTextComponent.java:[120,16] mousePressed implements method in MouseListener; expected @Override
Did you mean
@Override public void mousePressed(MouseEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/DumbTextComponent.java:[132,16] mouseDragged implements method in MouseMotionListener; expected @Override
Did you mean
@Override public void mouseDragged(MouseEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/DumbTextComponent.java:[137,16] mouseReleased implements method in MouseListener; expected @Override
Did you mean
@Override public void mouseReleased(MouseEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/DumbTextComponent.java:[142,16] mouseEntered implements method in MouseListener; expected @Override
Did you mean
@Override public void mouseEntered(MouseEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/DumbTextComponent.java:[146,16] mouseExited implements method in MouseListener; expected @Override
Did you mean
@Override public void mouseExited(MouseEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/DumbTextComponent.java:[150,16] mouseClicked implements method in MouseListener; expected @Override
Did you mean
@Override public void mouseClicked(MouseEvent e) {}
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/DumbTextComponent.java:[152,16] mouseMoved implements method in MouseMotionListener; expected @Override
Did you mean
@Override public void mouseMoved(MouseEvent e) {}
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/DumbTextComponent.java:[154,16] focusGained implements method in FocusListener; expected @Override
Did you mean
@Override public void focusGained(FocusEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/DumbTextComponent.java:[161,16] focusLost implements method in FocusListener; expected @Override
Did you mean
@Override public void focusLost(FocusEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/DumbTextComponent.java:[183,16] keyPressed implements method in KeyListener; expected @Override
Did you mean
@Override public void keyPressed(KeyEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/DumbTextComponent.java:[319,16] keyReleased implements method in KeyListener; expected @Override
Did you mean
@Override public void keyReleased(KeyEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/DumbTextComponent.java:[326,16] keyTyped implements method in KeyListener; expected @Override
Did you mean
@Override public void keyTyped(KeyEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/DumbTextComponent.java:[437,16] setBounds overrides method in Component; expected @Override
Did you mean
@Override public void setBounds(int x, int y, int w, int h) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/DumbTextComponent.java:[442,21] getPreferredSize overrides method in Component; expected @Override
Did you mean
@Override public Dimension getPreferredSize() {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/DumbTextComponent.java:[446,21] getMaximumSize overrides method in Component; expected @Override
Did you mean
@Override public Dimension getMaximumSize() {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/DumbTextComponent.java:[450,21] getMinimumSize overrides method in Component; expected @Override
Did you mean
@Override public Dimension getMinimumSize() {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/DumbTextComponent.java:[485,16] setFont overrides method in Component; expected @Override
Did you mean
@Override public void setFont(Font font) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/DumbTextComponent.java:[493,16] update overrides method in Canvas; expected @Override
Did you mean
@Override public void update(Graphics g) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/DumbTextComponent.java:[498,16] paint overrides method in Canvas; expected @Override
Did you mean
@Override public void paint(Graphics g) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/Selection.java:[45,19] equals overrides method in Object; expected @Override
Did you mean
@Override public boolean equals(Object other) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/AnyTransliterator.java:[43,19] handleTransliterate implements method in Transliterator; expected @Override
Did you mean
@Override protected void handleTransliterate(Replaceable text, Position offsets, boolean isIncremental) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/AnyTransliterator.java:[153,20] reset implements method in RunIterator; expected @Override
Did you mean
@Override public void reset(Replaceable repText, Position expansePos) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/AnyTransliterator.java:[159,20] reset implements method in RunIterator; expected @Override
Did you mean
@Override public void reset() {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/AnyTransliterator.java:[168,23] next implements method in RunIterator; expected @Override
Did you mean
@Override public boolean next(Position run) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/AnyTransliterator.java:[242,23] atEnd implements method in RunIterator; expected @Override
Did you mean
@Override public boolean atEnd() {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/AnyTransliterator.java:[246,20] getCurrent implements method in RunIterator; expected @Override
Did you mean
@Override public void getCurrent(Position run) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/AnyTransliterator.java:[250,20] getExpanse implements method in RunIterator; expected @Override
Did you mean
@Override public void getExpanse(Position run) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/AnyTransliterator.java:[254,22] getName implements method in RunIterator; expected @Override
Did you mean
@Override public String getName() {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/AnyTransliterator.java:[258,20] adjust implements method in RunIterator; expected @Override
Did you mean
@Override public void adjust(int newCurrentLimit) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/AnyTransliterator.java:[324,34] getInstance implements method in Factory; expected @Override
Did you mean
@Override public Transliterator getInstance(String ID) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/Demo.java:[97,32] windowClosing overrides method in WindowAdapter; expected @Override
Did you mean
@Override public void windowClosing(WindowEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/Demo.java:[113,32] windowClosing overrides method in WindowAdapter; expected @Override
Did you mean
@Override public void windowClosing(WindowEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/Demo.java:[141,32] actionPerformed implements method in ActionListener; expected @Override
Did you mean
@Override public void actionPerformed(ActionEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/Demo.java:[241,32] actionPerformed implements method in ActionListener; expected @Override
Did you mean
@Override public void actionPerformed(ActionEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/Demo.java:[250,32] actionPerformed implements method in ActionListener; expected @Override
Did you mean
@Override public void actionPerformed(ActionEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/Demo.java:[266,32] actionPerformed implements method in ActionListener; expected @Override
Did you mean
@Override public void actionPerformed(ActionEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/Demo.java:[296,32] actionPerformed implements method in ActionListener; expected @Override
Did you mean
@Override public void actionPerformed(ActionEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/Demo.java:[307,32] actionPerformed implements method in ActionListener; expected @Override
Did you mean
@Override public void actionPerformed(ActionEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/Demo.java:[317,32] actionPerformed implements method in ActionListener; expected @Override
Did you mean
@Override public void actionPerformed(ActionEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/Demo.java:[329,32] actionPerformed implements method in ActionListener; expected @Override
Did you mean
@Override public void actionPerformed(ActionEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/Demo.java:[344,32] actionPerformed implements method in ActionListener; expected @Override
Did you mean
@Override public void actionPerformed(ActionEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/Demo.java:[362,32] actionPerformed implements method in ActionListener; expected @Override
Did you mean
@Override public void actionPerformed(ActionEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/Demo.java:[382,32] actionPerformed implements method in ActionListener; expected @Override
Did you mean
@Override public void actionPerformed(ActionEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/Demo.java:[443,20] actionPerformed implements method in ActionListener; expected @Override
Did you mean
@Override public void actionPerformed(ActionEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/Demo.java:[531,35] compare implements method in Comparator; expected @Override
Did you mean
@Override public int compare(Object a, Object b) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/Demo.java:[550,30] getInstance implements method in Factory; expected @Override
Did you mean
@Override public Transliterator getInstance(String ID) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/Demo.java:[1368,20] actionPerformed implements method in ActionListener; expected @Override
Did you mean
@Override public void actionPerformed(ActionEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/Demo.java:[1372,20] itemStateChanged implements method in ItemListener; expected @Override
Did you mean
@Override public void itemStateChanged(ItemEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/Demo.java:[1388,20] actionPerformed implements method in ActionListener; expected @Override
Did you mean
@Override public void actionPerformed(ActionEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/Demo.java:[1402,20] actionPerformed implements method in ActionListener; expected @Override
Did you mean
@Override public void actionPerformed(ActionEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/TransliteratingTextComponent.java:[62,19] handleKeyTyped overrides method in DumbTextComponent; expected @Override
Did you mean
@Override protected void handleKeyTyped(KeyEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/InfoDialog.java:[55,32] actionPerformed implements method in ActionListener; expected @Override
Did you mean
@Override public void actionPerformed(ActionEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/InfoDialog.java:[66,32] windowClosing overrides method in WindowAdapter; expected @Override
Did you mean
@Override public void windowClosing(WindowEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/DemoApplet.java:[40,16] init overrides method in Applet; expected @Override
Did you mean
@Override public void init() {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/DemoApplet.java:[45,32] actionPerformed implements method in ActionListener; expected @Override
Did you mean
@Override public void actionPerformed(ActionEvent e) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/DemoApplet.java:[50,52] windowClosing overrides method in WindowAdapter; expected @Override
Did you mean
@Override public void windowClosing(WindowEvent we) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/DemoApplet.java:[69,16] stop overrides method in Applet; expected @Override
Did you mean
@Override public void stop() {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/TransliterationChart.java:[234,19] compare implements method in Comparator; expected @Override
Did you mean
@Override public int compare(Object o1, Object o2) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/TransliterationChart.java:[250,19] compare implements method in Comparator; expected @Override
Did you mean
@Override public int compare(Object o1, Object o2) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/TransliterationChart.java:[300,27] hasNext implements method in Iterator; expected @Override
Did you mean
@Override public boolean hasNext() {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/TransliterationChart.java:[304,26] next implements method in Iterator; expected @Override
Did you mean
@Override public Object next() {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/TransliterationChart.java:[308,24] remove implements method in Iterator; expected @Override
Did you mean
@Override public void remove() {
icu4j/samples/src/main/java/com/ibm/icu/samples/iuc/PopulationData.java:[44,19] compareTo implements method in Comparable; expected @Override
Did you mean
@Override public int compareTo(TerritoryEntry o) {
icu4j/samples/src/main/java/com/ibm/icu/samples/iuc/Sample50_PopSort.java:[52,47] compare implements method in Comparator; expected @Override
Did you mean
@Override public int compare(TerritoryEntry o1, TerritoryEntry o2) {
icu4j/samples/src/main/java/com/ibm/icu/samples/text/messagepattern/MiniMessageFormatter.java:[179,32] cloneAsThawed implements method in Freezable; expected @Override
Did you mean
@Override public MiniMessageFormatter cloneAsThawed() {
icu4j/samples/src/main/java/com/ibm/icu/samples/text/messagepattern/MiniMessageFormatter.java:[184,32] freeze implements method in Freezable; expected @Override
Did you mean
@Override public MiniMessageFormatter freeze() {
icu4j/samples/src/main/java/com/ibm/icu/samples/text/messagepattern/MiniMessageFormatter.java:[189,19] isFrozen implements method in Freezable; expected @Override
Did you mean
@Override public boolean isFrozen() {
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/coverage/JacocoReportCheck.java:[147,43] resolveEntity implements method in EntityResolver; expected @Override
Did you mean
@Override public InputSource resolveEntity(String publicId, String systemId) {
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/docs/CheckTags.java:[68,22] toString overrides method in Object; expected @Override
Did you mean
@Override public String toString() {
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/docs/CodeMangler.java:[299,31] accept implements method in FilenameFilter; expected @Override
Did you mean
@Override public boolean accept(File dir, String name) {
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/docs/CodeMangler.java:[315,26] toString overrides method in Object; expected @Override
Did you mean
@Override public String toString() {
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/docs/Deprecator.java:[127,31] accept implements method in FilenameFilter; expected @Override
Did you mean
@Override public boolean accept(File dir, String name) {
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/docs/ICUJDKCompare.java:[532,22] toString overrides method in Object; expected @Override
Did you mean
@Override public String toString() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/charsetdet/mbcs/BIG5Tool.java:[246,23] equals overrides method in Object; expected @Override
Did you mean
@Override public boolean equals(Object other) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/charsetdet/mbcs/BIG5Tool.java:[253,19] hashCode overrides method in Object; expected @Override
Did you mean
@Override public int hashCode() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/charsetdet/mbcs/BIG5Tool.java:[259,19] compareTo implements method in Comparable; expected @Override
Did you mean
@Override public int compareTo(ChEl other) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/charsetdet/mbcs/EUCTool.java:[248,23] equals overrides method in Object; expected @Override
Did you mean
@Override public boolean equals(Object other) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/charsetdet/mbcs/EUCTool.java:[255,19] hashCode overrides method in Object; expected @Override
Did you mean
@Override public int hashCode() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/charsetdet/mbcs/EUCTool.java:[261,19] compareTo implements method in Comparable; expected @Override
Did you mean
@Override public int compareTo(ChEl other) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/charsetdet/sbcs/Checker.java:[52,16] handleNGram implements method in NGramParserClient; expected @Override
Did you mean
@Override public void handleNGram(String key) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/charsetdet/sbcs/Checker.java:[103,16] nextChar implements method in NGramParserClient; expected @Override
Did you mean
@Override public char nextChar() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/charsetdet/sbcs/NGramList.java:[56,19] compareTo implements method in Comparable; expected @Override
Did you mean
@Override public int compareTo(NGram o) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/charsetdet/sbcs/InputFile.java:[117,18] mapKey implements method in NGramKeyMapper; expected @Override
Did you mean
@Override public Object mapKey(String key) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/charsetdet/sbcs/StatisticsTool.java:[144,16] nextChar implements method in NGramParserClient; expected @Override
Did you mean
@Override public char nextChar() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/charsetdet/sbcs/StatisticsTool.java:[156,16] handleNGram implements method in NGramParserClient; expected @Override
Did you mean
@Override public void handleNGram(String key) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/charsetdet/sbcs/StatisticsTool.java:[160,18] mapKey implements method in NGramKeyMapper; expected @Override
Did you mean
@Override public Object mapKey(String key) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/BengaliInputMethodDescriptor.java:[26,35] getImpl implements method in IndicIMDescriptor; expected @Override
Did you mean
@Override protected IndicInputMethodImpl getImpl() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicIMDescriptor.java:[29,20] getAvailableLocales implements method in InputMethodDescriptor; expected @Override
Did you mean
@Override public Locale[] getAvailableLocales() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicIMDescriptor.java:[33,19] hasDynamicLocaleList implements method in InputMethodDescriptor; expected @Override
Did you mean
@Override public boolean hasDynamicLocaleList() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicIMDescriptor.java:[37,31] getInputMethodDisplayName implements method in InputMethodDescriptor; expected @Override
Did you mean
@Override public synchronized String getInputMethodDisplayName(
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicIMDescriptor.java:[49,17] getInputMethodIcon implements method in InputMethodDescriptor; expected @Override
Did you mean
@Override public Image getInputMethodIcon(Locale inputLocale) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicIMDescriptor.java:[53,23] createInputMethod implements method in InputMethodDescriptor; expected @Override
Did you mean
@Override public InputMethod createInputMethod() throws Exception {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicIMDescriptor.java:[57,18] toString overrides method in Object; expected @Override
Did you mean
@Override public String toString() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethodImpl.java:[314,20] first implements method in CharacterIterator; expected @Override
Did you mean
@Override public char first() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethodImpl.java:[318,20] last implements method in CharacterIterator; expected @Override
Did you mean
@Override public char last() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethodImpl.java:[325,20] current implements method in CharacterIterator; expected @Override
Did you mean
@Override public char current() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethodImpl.java:[330,20] next implements method in CharacterIterator; expected @Override
Did you mean
@Override public char next() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethodImpl.java:[337,20] previous implements method in CharacterIterator; expected @Override
Did you mean
@Override public char previous() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethodImpl.java:[342,20] setIndex implements method in CharacterIterator; expected @Override
Did you mean
@Override public char setIndex(int position) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethodImpl.java:[349,19] getBeginIndex implements method in CharacterIterator; expected @Override
Did you mean
@Override public int getBeginIndex() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethodImpl.java:[353,19] getEndIndex implements method in CharacterIterator; expected @Override
Did you mean
@Override public int getEndIndex() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethodImpl.java:[357,19] getIndex implements method in CharacterIterator; expected @Override
Did you mean
@Override public int getIndex() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethodImpl.java:[361,23] clone implements method in CharacterIterator; expected @Override
Did you mean
@Override public ACIText clone() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethodImpl.java:[370,19] getRunStart implements method in AttributedCharacterIterator; expected @Override
Did you mean
@Override public int getRunStart() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethodImpl.java:[374,19] getRunStart implements method in AttributedCharacterIterator; expected @Override
Did you mean
@Override public int getRunStart(AttributedCharacterIterator.Attribute attribute) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethodImpl.java:[380,19] getRunStart implements method in AttributedCharacterIterator; expected @Override
Did you mean
@Override public int getRunStart(Set attributes) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethodImpl.java:[386,19] getRunLimit implements method in AttributedCharacterIterator; expected @Override
Did you mean
@Override public int getRunLimit() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethodImpl.java:[390,19] getRunLimit implements method in AttributedCharacterIterator; expected @Override
Did you mean
@Override public int getRunLimit(AttributedCharacterIterator.Attribute attribute) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethodImpl.java:[396,19] getRunLimit implements method in AttributedCharacterIterator; expected @Override
Did you mean
@Override public int getRunLimit(Set attributes) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethodImpl.java:[402,19] getAttributes implements method in AttributedCharacterIterator; expected @Override
Did you mean
@Override public Map getAttributes() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethodImpl.java:[412,22] getAttribute implements method in AttributedCharacterIterator; expected @Override
Did you mean
@Override public Object getAttribute(AttributedCharacterIterator.Attribute attribute) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethodImpl.java:[422,19] getAllAttributeKeys implements method in AttributedCharacterIterator; expected @Override
Did you mean
@Override public Set getAllAttributeKeys() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/DevanagariInputMethodDescriptor.java:[26,35] getImpl implements method in IndicIMDescriptor; expected @Override
Did you mean
@Override protected IndicInputMethodImpl getImpl() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/GujaratiInputMethodDescriptor.java:[24,35] getImpl implements method in IndicIMDescriptor; expected @Override
Did you mean
@Override protected IndicInputMethodImpl getImpl() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/GurmukhiInputMethodDescriptor.java:[26,35] getImpl implements method in IndicIMDescriptor; expected @Override
Did you mean
@Override protected IndicInputMethodImpl getImpl() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethod.java:[30,16] setInputMethodContext implements method in InputMethod; expected @Override
Did you mean
@Override public void setInputMethodContext(InputMethodContext context) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethod.java:[34,19] setLocale implements method in InputMethod; expected @Override
Did you mean
@Override public boolean setLocale(Locale locale) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethod.java:[38,18] getLocale implements method in InputMethod; expected @Override
Did you mean
@Override public Locale getLocale() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethod.java:[42,16] setCharacterSubsets implements method in InputMethod; expected @Override
Did you mean
@Override public void setCharacterSubsets(Subset[] subsets) {}
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethod.java:[44,16] setCompositionEnabled implements method in InputMethod; expected @Override
Did you mean
@Override public void setCompositionEnabled(boolean enable) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethod.java:[48,19] isCompositionEnabled implements method in InputMethod; expected @Override
Did you mean
@Override public boolean isCompositionEnabled() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethod.java:[52,16] reconvert implements method in InputMethod; expected @Override
Did you mean
@Override public void reconvert() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethod.java:[56,16] dispatchEvent implements method in InputMethod; expected @Override
Did you mean
@Override public void dispatchEvent(AWTEvent event) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethod.java:[65,16] notifyClientWindowChange implements method in InputMethod; expected @Override
Did you mean
@Override public void notifyClientWindowChange(Rectangle bounds) {}
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethod.java:[67,16] activate implements method in InputMethod; expected @Override
Did you mean
@Override public void activate() {}
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethod.java:[69,16] deactivate implements method in InputMethod; expected @Override
Did you mean
@Override public void deactivate(boolean isTemporary) {}
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethod.java:[71,16] hideWindows implements method in InputMethod; expected @Override
Did you mean
@Override public void hideWindows() {}
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethod.java:[73,16] removeNotify implements method in InputMethod; expected @Override
Did you mean
@Override public void removeNotify() {}
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethod.java:[75,16] endComposition implements method in InputMethod; expected @Override
Did you mean
@Override public void endComposition() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethod.java:[79,16] dispose implements method in InputMethod; expected @Override
Did you mean
@Override public void dispose() {}
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethod.java:[81,18] getControlObject implements method in InputMethod; expected @Override
Did you mean
@Override public Object getControlObject() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/KannadaInputMethodDescriptor.java:[24,35] getImpl implements method in IndicIMDescriptor; expected @Override
Did you mean
@Override protected IndicInputMethodImpl getImpl() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/MalayalamInputMethodDescriptor.java:[24,35] getImpl implements method in IndicIMDescriptor; expected @Override
Did you mean
@Override protected IndicInputMethodImpl getImpl() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/OriyaInputMethodDescriptor.java:[26,35] getImpl implements method in IndicIMDescriptor; expected @Override
Did you mean
@Override protected IndicInputMethodImpl getImpl() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/TamilInputMethodDescriptor.java:[24,35] getImpl implements method in IndicIMDescriptor; expected @Override
Did you mean
@Override protected IndicInputMethodImpl getImpl() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/TeluguInputMethodDescriptor.java:[24,35] getImpl implements method in IndicIMDescriptor; expected @Override
Did you mean
@Override protected IndicInputMethodImpl getImpl() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/translit/TransliteratorInputMethod.java:[113,16] setInputMethodContext implements method in InputMethod; expected @Override
Did you mean
@Override public void setInputMethodContext(InputMethodContext context) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/translit/TransliteratorInputMethod.java:[158,36] actionPerformed implements method in ActionListener; expected @Override
Did you mean
@Override public void actionPerformed(ActionEvent e) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/translit/TransliteratorInputMethod.java:[222,16] notifyClientWindowChange implements method in InputMethod; expected @Override
Did you mean
@Override public void notifyClientWindowChange(Rectangle location) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/translit/TransliteratorInputMethod.java:[239,16] activate implements method in InputMethod; expected @Override
Did you mean
@Override public void activate() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/translit/TransliteratorInputMethod.java:[262,16] deactivate implements method in InputMethod; expected @Override
Did you mean
@Override public void deactivate(boolean isTemporary) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/translit/TransliteratorInputMethod.java:[272,16] hideWindows implements method in InputMethod; expected @Override
Did you mean
@Override public void hideWindows() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/translit/TransliteratorInputMethod.java:[283,19] setLocale implements method in InputMethod; expected @Override
Did you mean
@Override public boolean setLocale(Locale locale) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/translit/TransliteratorInputMethod.java:[287,18] getLocale implements method in InputMethod; expected @Override
Did you mean
@Override public Locale getLocale() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/translit/TransliteratorInputMethod.java:[291,16] setCharacterSubsets implements method in InputMethod; expected @Override
Did you mean
@Override public void setCharacterSubsets(Character.Subset[] subsets) {}
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/translit/TransliteratorInputMethod.java:[293,16] reconvert implements method in InputMethod; expected @Override
Did you mean
@Override public void reconvert() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/translit/TransliteratorInputMethod.java:[297,16] removeNotify implements method in InputMethod; expected @Override
Did you mean
@Override public void removeNotify() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/translit/TransliteratorInputMethod.java:[301,16] endComposition implements method in InputMethod; expected @Override
Did you mean
@Override public void endComposition() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/translit/TransliteratorInputMethod.java:[305,16] dispose implements method in InputMethod; expected @Override
Did you mean
@Override public void dispose() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/translit/TransliteratorInputMethod.java:[309,18] getControlObject implements method in InputMethod; expected @Override
Did you mean
@Override public Object getControlObject() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/translit/TransliteratorInputMethod.java:[313,16] setCompositionEnabled implements method in InputMethod; expected @Override
Did you mean
@Override public void setCompositionEnabled(boolean enable) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/translit/TransliteratorInputMethod.java:[317,19] isCompositionEnabled implements method in InputMethod; expected @Override
Did you mean
@Override public boolean isCompositionEnabled() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/translit/TransliteratorInputMethod.java:[342,16] dispatchEvent implements method in InputMethod; expected @Override
Did you mean
@Override public void dispatchEvent(AWTEvent event) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/translit/TransliteratorInputMethod.java:[685,18] toString overrides method in Object; expected @Override
Did you mean
@Override public String toString() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/translit/TransliteratorInputMethod.java:[703,21] getListCellRendererComponent implements method in ListCellRenderer; expected @Override
Did you mean
@Override public Component getListCellRendererComponent(
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/translit/TransliteratorInputMethod.java:[725,15] compare implements method in Comparator; expected @Override
Did you mean
@Override public int compare(Object obj1, Object obj2) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/translit/TransliteratorInputMethod.java:[730,19] equals implements method in Comparator; expected @Override
Did you mean
@Override public boolean equals(Object obj1) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/translit/TransliteratorInputMethodDescriptor.java:[33,23] createInputMethod implements method in InputMethodDescriptor; expected @Override
Did you mean
@Override public InputMethod createInputMethod() throws Exception {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/translit/TransliteratorInputMethodDescriptor.java:[44,20] getAvailableLocales implements method in InputMethodDescriptor; expected @Override
Did you mean
@Override public Locale[] getAvailableLocales() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/translit/TransliteratorInputMethodDescriptor.java:[54,19] hasDynamicLocaleList implements method in InputMethodDescriptor; expected @Override
Did you mean
@Override public boolean hasDynamicLocaleList() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/translit/TransliteratorInputMethodDescriptor.java:[65,18] getInputMethodDisplayName implements method in InputMethodDescriptor; expected @Override
Did you mean
@Override public String getInputMethodDisplayName(Locale inputLocale, Locale displayLanguage) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/translit/TransliteratorInputMethodDescriptor.java:[86,17] getInputMethodIcon implements method in InputMethodDescriptor; expected @Override
Did you mean
@Override public Image getInputMethodIcon(Locale inputLocale) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/ClassTable.java:[194,16] writeLookupSubtable implements method in LookupSubtable; expected @Override
Did you mean
@Override public void writeLookupSubtable(OpenTypeTableWriter writer) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/DecompTable.java:[127,16] writeLookupSubtable implements method in LookupSubtable; expected @Override
Did you mean
@Override public void writeLookupSubtable(OpenTypeTableWriter writer) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/GDEFWriter.java:[29,16] writeTable implements method in OpenTypeTableWriter; expected @Override
Did you mean
@Override public void writeTable(PrintStream output) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/GSUBWriter.java:[36,16] writeTable implements method in OpenTypeTableWriter; expected @Override
Did you mean
@Override public void writeTable(PrintStream output) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/LanguageData.java:[135,15] getMinValue implements method in TagValueData; expected @Override
Did you mean
@Override public int getMinValue() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/LanguageData.java:[139,15] getMaxValue implements method in TagValueData; expected @Override
Did you mean
@Override public int getMaxValue() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/LanguageData.java:[143,18] getTag implements method in TagValueData; expected @Override
Did you mean
@Override public String getTag(int value) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/LanguageData.java:[151,18] getTagLabel implements method in TagValueData; expected @Override
Did you mean
@Override public String getTagLabel(int value) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/LanguageData.java:[159,18] makeTag implements method in TagValueData; expected @Override
Did you mean
@Override public String makeTag(int value) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/LanguageData.java:[167,18] getName implements method in TagValueData; expected @Override
Did you mean
@Override public String getName(int value) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/LigatureTreeWalker.java:[34,16] down implements method in TreeWalker; expected @Override
Did you mean
@Override public void down(int ch) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/LigatureTreeWalker.java:[39,16] up implements method in TreeWalker; expected @Override
Did you mean
@Override public void up() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/LigatureTreeWalker.java:[45,16] ligature implements method in TreeWalker; expected @Override
Did you mean
@Override public void ligature(int lig) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/LigatureTreeWalker.java:[60,16] done implements method in TreeWalker; expected @Override
Did you mean
@Override public void done() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/LigatureTreeWalker.java:[84,16] writeLookupSubtable implements method in LookupSubtable; expected @Override
Did you mean
@Override public void writeLookupSubtable(OpenTypeTableWriter writer) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/ScriptData.java:[55,22] toString overrides method in Object; expected @Override
Did you mean
@Override public String toString() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/ScriptData.java:[169,15] getMinValue implements method in TagValueData; expected @Override
Did you mean
@Override public int getMinValue() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/ScriptData.java:[173,15] getMaxValue implements method in TagValueData; expected @Override
Did you mean
@Override public int getMaxValue() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/ScriptData.java:[181,18] getTag implements method in TagValueData; expected @Override
Did you mean
@Override public String getTag(int value) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/ScriptData.java:[189,18] getTagLabel implements method in TagValueData; expected @Override
Did you mean
@Override public String getTagLabel(int value) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/ScriptData.java:[197,18] makeTag implements method in TagValueData; expected @Override
Did you mean
@Override public String makeTag(int value) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/ScriptData.java:[207,18] getName implements method in TagValueData; expected @Override
Did you mean
@Override public String getName(int value) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/ShapingTypeBuilder.java:[30,16] writeTable implements method in OpenTypeTableWriter; expected @Override
Did you mean
@Override public void writeTable(PrintStream output) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/ThaiStateTransition.java:[42,18] toString overrides method in Object; expected @Override
Did you mean
@Override public String toString() {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/translit/UnicodeSetCloseOver.java:[227,39] compare implements method in Comparator; expected @Override
Did you mean
@Override public int compare(Object a, Object b) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/translit/UnicodeSetCloseOver.java:[232,43] equals implements method in Comparator; expected @Override
Did you mean
@Override public boolean equals(Object obj) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/translit/UnicodeSetClosure.java:[192,22] get implements method in Char32ToString; expected @Override
Did you mean
@Override public String get(int cp) {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/BreakIteratorPerformanceTest.java:[39,19] setup overrides method in PerfTest; expected @Override
Did you mean
@Override protected void setup(String[] args) {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/BreakIteratorPerformanceTest.java:[131,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/BreakIteratorPerformanceTest.java:[151,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/BreakIteratorPerformanceTest.java:[160,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/BreakIteratorPerformanceTest.java:[180,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ConverterPerformanceTest.java:[35,19] setup overrides method in PerfTest; expected @Override
Did you mean
@Override protected void setup(String[] args) {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ConverterPerformanceTest.java:[64,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ConverterPerformanceTest.java:[77,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ConverterPerformanceTest.java:[87,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ConverterPerformanceTest.java:[100,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ConverterPerformanceTest.java:[219,28] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ConverterPerformanceTest.java:[231,28] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ConverterPerformanceTest.java:[249,28] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ConverterPerformanceTest.java:[261,28] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ConverterPerformanceTest.java:[279,28] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ConverterPerformanceTest.java:[291,28] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ConverterPerformanceTest.java:[309,28] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ConverterPerformanceTest.java:[321,28] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/DateFormatPerformanceTest.java:[33,19] setup overrides method in PerfTest; expected @Override
Did you mean
@Override protected void setup(String[] args) {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/DateFormatPerformanceTest.java:[62,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/DateFormatPerformanceTest.java:[70,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/DateFormatPerformanceTest.java:[78,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call(int id) {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/DateFormatPerformanceTest.java:[90,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call(int id) {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/DateFormatPerformanceTest.java:[102,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call(int id) {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/DateFormatPerformanceTest.java:[110,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call(int id) {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/DecimalFormatPerformanceTest.java:[32,19] setup overrides method in PerfTest; expected @Override
Did you mean
@Override protected void setup(String[] args) {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/DecimalFormatPerformanceTest.java:[65,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/DecimalFormatPerformanceTest.java:[74,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/DecimalFormatPerformanceTest.java:[82,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call(int id) {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/DecimalFormatPerformanceTest.java:[95,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call(int id) {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/DecimalFormatPerformanceTest.java:[108,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call(int id) {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/DecimalFormatPerformanceTest.java:[116,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call(int id) {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[23,19] setup overrides method in PerfTest; expected @Override
Did you mean
@Override protected void setup(String[] args) {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[32,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[38,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[50,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[56,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[68,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[74,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[87,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[93,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[105,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[111,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[123,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[129,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[142,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[146,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[157,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[161,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[172,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[176,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[188,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[193,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[204,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[209,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[220,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[224,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[236,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[242,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[254,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[260,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[272,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[278,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[291,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[297,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[309,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[315,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[327,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[333,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[345,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[351,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[363,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[369,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[381,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[387,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[399,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[405,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[417,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[423,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[435,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[441,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[454,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[460,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[472,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[478,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[490,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[496,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[508,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[514,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[526,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[532,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[544,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[550,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[562,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[568,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[580,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[586,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[598,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/NormalizerPerformanceTest.java:[604,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/RBBIPerf.java:[34,19] setup overrides method in PerfTest; expected @Override
Did you mean
@Override protected void setup(String[] args) {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/RBBIPerf.java:[68,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/RBBIPerf.java:[79,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/RBBIPerf.java:[99,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/RBBIPerf.java:[105,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/RBBIPerf.java:[119,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/RBBIPerf.java:[127,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ResourceBundlePerf.java:[25,19] setup overrides method in PerfTest; expected @Override
Did you mean
@Override protected void setup(String[] args) {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ResourceBundlePerf.java:[32,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ResourceBundlePerf.java:[41,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ResourceBundlePerf.java:[49,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ResourceBundlePerf.java:[58,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ResourceBundlePerf.java:[74,20] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ResourceBundlePerf.java:[89,20] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ResourceBundlePerf.java:[128,20] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ResourceBundlePerf.java:[143,20] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ResourceBundlePerf.java:[192,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ResourceBundlePerf.java:[201,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ResourceBundlePerf.java:[218,20] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ResourceBundlePerf.java:[235,20] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ResourceBundlePerf.java:[269,20] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ResourceBundlePerf.java:[289,20] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ResourceBundlePerf.java:[324,20] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ResourceBundlePerf.java:[353,20] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ServiceObjectCreationPerf.java:[23,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ServiceObjectCreationPerf.java:[30,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ServiceObjectCreationPerf.java:[40,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ServiceObjectCreationPerf.java:[47,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ServiceObjectCreationPerf.java:[57,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ServiceObjectCreationPerf.java:[64,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ServiceObjectCreationPerf.java:[74,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ServiceObjectCreationPerf.java:[81,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[27,19] setup overrides method in PerfTest; expected @Override
Did you mean
@Override protected void setup(String[] args) {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[41,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[47,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[55,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[61,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[69,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[75,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[83,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[89,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[97,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[103,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[111,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[117,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[125,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[131,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[139,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[145,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[153,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[159,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[167,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[173,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[181,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[187,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[195,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[201,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[209,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[215,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[223,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[229,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[237,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[243,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[251,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[257,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[265,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[271,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[279,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[285,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[293,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[299,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[307,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[313,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[321,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[327,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[335,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[341,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[349,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[355,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[363,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[369,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[377,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[383,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[391,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[397,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[405,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[411,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[419,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[425,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[433,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[439,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[447,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[453,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[461,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[467,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[475,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[481,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UnicodeSetPerf.java:[33,19] setup overrides method in PerfTest; expected @Override
Did you mean
@Override protected void setup(String[] args) {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UnicodeSetPerf.java:[48,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UnicodeSetPerf.java:[60,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UnicodeSetPerf.java:[68,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UnicodeSetPerf.java:[80,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UnicodeSetPerf.java:[91,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UnicodeSetPerf.java:[100,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UnicodeSetPerf.java:[113,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UnicodeSetPerf.java:[122,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UnicodeSetPerf.java:[130,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UnicodeSetPerf.java:[138,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UnicodeSetPerf.java:[151,24] call overrides method in Function; expected @Override
Did you mean
@Override public void call() {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UnicodeSetPerf.java:[158,24] getOperationsPerIteration overrides method in Function; expected @Override
Did you mean
@Override public long getOperationsPerIteration() {

[WARNING] MissingSummary (1494) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/text/UnicodeSet.java:[905,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/UnicodeSet.java:[4681,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/UnicodeSet.java:[4694,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/UnicodeSet.java:[4707,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/UnicodeSet.java:[4715,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/UnicodeSet.java:[4728,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/UnicodeSet.java:[4740,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/UnicodeSet.java:[4759,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/UnicodeSet.java:[4763,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/UnicodeSet.java:[4767,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/UnicodeSet.java:[4823,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/CalendarCache.java:[12,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/CalendarCache.java:[35,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/CalendarCache.java:[42,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/CalendarCache.java:[117,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UResource.java:[206,11] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns true if the substring of this key starting from the offset contains the same
icu4j/main/core/src/main/java/com/ibm/icu/impl/UResource.java:[253,11] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns the number of items in the array resource.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UResource.java:[258,11] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns true if i is non-negative and less than getSize().
icu4j/main/core/src/main/java/com/ibm/icu/impl/UResource.java:[271,11] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns the number of items in the table resource.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UResource.java:[276,11] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns true if i is non-negative and less than getSize().
icu4j/main/core/src/main/java/com/ibm/icu/impl/UResource.java:[284,11] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns true if the table contains the key.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UResource.java:[299,11] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns iCU resource type like {@link UResourceBundle#getType()}, for example, {@link UResourceBundle#STRING}.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UResource.java:[305,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UResource.java:[311,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UResource.java:[316,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UResource.java:[322,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UResource.java:[328,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UResource.java:[334,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UResource.java:[340,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UResource.java:[345,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UResource.java:[359,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/Edits.java:[261,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/Edits.java:[269,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/Trie2_16.java:[18,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/Trie2_16.java:[154,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns the number of bytes of the serialized trie.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UCaseProps.java:[573,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns nONE, LOWER, UPPER, TITLE.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UCaseProps.java:[580,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns like getType() but also sets IGNORABLE if c is case-ignorable.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UCaseProps.java:[587,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns nO_DOT, SOFT_DOTTED, ABOVE, OTHER_ACCENT.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UCaseProps.java:[1639,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns nONE, LOWER, UPPER, TITLE.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[1899,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[1904,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[1909,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[1914,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[1919,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[1924,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[1929,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[1934,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[1939,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[1944,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[1949,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[1954,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/NumberFormat.java:[1959,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/MeasureUnitImpl.java:[211,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeUnit.java:[34,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/ICUBinary.java:[536,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/CodePointMap.java:[114,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/CodePointMap.java:[122,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/CodePointMap.java:[130,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/CodePointMap.java:[285,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/CodePointMap.java:[293,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/CodePointMap.java:[301,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/FormattedStringBuilder.java:[477,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns a new array containing the contents of this string builder.
icu4j/main/core/src/main/java/com/ibm/icu/impl/FormattedStringBuilder.java:[484,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns a new array containing the field values of this string builder.
icu4j/main/core/src/main/java/com/ibm/icu/impl/FormattedStringBuilder.java:[536,7] A summary fragment is required; consider using the value of the @see block as a summary fragment instead.
Did you mean
*See {@link #toFieldArray}.
icu4j/main/core/src/main/java/com/ibm/icu/impl/FormattedStringBuilder.java:[556,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns whether the contents of this instance is currently equal to the given instance.
icu4j/main/core/src/main/java/com/ibm/icu/impl/ICUResourceBundleReader.java:[519,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns a string from the local bundle's b16BitUnits at the local offset.
icu4j/main/core/src/main/java/com/ibm/icu/text/StringPrepParseException.java:[24,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/StringPrepParseException.java:[29,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/StringPrepParseException.java:[34,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/StringPrepParseException.java:[39,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/StringPrepParseException.java:[44,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/StringPrepParseException.java:[49,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/StringPrepParseException.java:[54,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/StringPrepParseException.java:[59,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/StringPrepParseException.java:[64,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/StringPrepParseException.java:[69,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/StringPrepParseException.java:[74,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/StringPrepParseException.java:[79,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/IllegalIcuArgumentException.java:[12,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/ImmutableEntry.java:[14,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/CaseMap.java:[38,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/CaseMap.java:[46,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/CaseMap.java:[54,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/CaseMap.java:[62,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/PatternProps.java:[33,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns true if c is a Pattern_Syntax code point.
icu4j/main/core/src/main/java/com/ibm/icu/impl/PatternProps.java:[53,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns true if c is a Pattern_Syntax or Pattern_White_Space code point.
icu4j/main/core/src/main/java/com/ibm/icu/impl/PatternProps.java:[73,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns true if c is a Pattern_White_Space character.
icu4j/main/core/src/main/java/com/ibm/icu/impl/PatternProps.java:[100,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns s except with leading and trailing Pattern_White_Space removed.
icu4j/main/core/src/main/java/com/ibm/icu/impl/PatternProps.java:[123,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns s except with leading and trailing SpaceChar characters removed.
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/range/StandardPluralRanges.java:[17,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/DecimalQuantity.java:[105,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/DecimalQuantity.java:[111,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns the value of the (suppressed) exponent after the number has been put into a notation
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/DecimalQuantity.java:[133,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns whether the value represented by this {@link DecimalQuantity} is zero, infinity, or
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/DecimalQuantity.java:[139,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns whether the value represented by this {@link DecimalQuantity} is less than zero.
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/DecimalQuantity.java:[144,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns the appropriate value from the Signum enum.
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/DecimalQuantity.java:[161,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns the value contained in this {@link DecimalQuantity} approximated as a double.
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/range/RangeMacroProps.java:[12,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/StandardPlural.java:[48,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns the lowercase CLDR keyword string for the plural form.
icu4j/main/core/src/main/java/com/ibm/icu/impl/StandardPlural.java:[55,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns the plural form corresponding to the keyword, or null.
icu4j/main/core/src/main/java/com/ibm/icu/impl/StandardPlural.java:[102,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns the plural form corresponding to the keyword, or OTHER.
icu4j/main/core/src/main/java/com/ibm/icu/impl/StandardPlural.java:[111,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/StandardPlural.java:[125,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns the index of the plural form corresponding to the keyword, or a negative value.
icu4j/main/core/src/main/java/com/ibm/icu/impl/StandardPlural.java:[134,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns the index of the plural form corresponding to the keyword, or OTHER_INDEX.
icu4j/main/core/src/main/java/com/ibm/icu/impl/StandardPlural.java:[143,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[286,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[290,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[294,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[298,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[302,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[306,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[310,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[314,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[333,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[341,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[545,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[550,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[555,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[560,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[565,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[570,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[589,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[597,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[631,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[636,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[641,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[646,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[651,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[656,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[661,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[666,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[671,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[676,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[681,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[686,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[691,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[696,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[715,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DisplayOptions.java:[723,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/parse/ParsedNumber.java:[126,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/RelativeDateFormat.java:[29,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/RelativeDateFormat.java:[34,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/MessagePattern.java:[308,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/MessagePattern.java:[324,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/MessagePattern.java:[885,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/SimpleFilteredSentenceBreakIterator.java:[26,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/BytesTrie.java:[535,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/BytesTrie.java:[565,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/SimpleFormatterImpl.java:[181,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns the max argument number + 1.
icu4j/main/core/src/main/java/com/ibm/icu/impl/StringPrepDataReader.java:[21,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/StringRange.java:[28,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/Trie2Writable.java:[12,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/Trie2_32.java:[18,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/Trie2_32.java:[152,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns the number of bytes of the serialized trie.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UCharArrayIterator.java:[14,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[186,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[191,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[196,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[201,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[206,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[211,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[216,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[221,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[233,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[238,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[243,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[248,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[253,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[258,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[263,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[268,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[273,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[278,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[283,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[288,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[293,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[298,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[303,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[308,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[313,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[318,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[323,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[328,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[333,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[338,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[343,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[348,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[353,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[358,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[363,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[368,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[373,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[378,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[383,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[388,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[393,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[398,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[410,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[415,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[420,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[425,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[430,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[435,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[440,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[445,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[450,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[455,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[460,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[465,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[470,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[475,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[480,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[485,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[490,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[495,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[500,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[505,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[510,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[515,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[520,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[525,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[530,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[535,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[540,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[545,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[550,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[555,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[560,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[565,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[570,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[575,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[600,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[605,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[610,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[615,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[620,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[625,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[630,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[635,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[640,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[645,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[650,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[655,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[660,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[665,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[670,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[675,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[680,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[685,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[706,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[711,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[716,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[721,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[726,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[731,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[736,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[741,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[746,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[751,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[756,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[761,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[766,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[771,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[776,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[781,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[786,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[791,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[796,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[801,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[806,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[811,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[816,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[821,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[826,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[831,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[836,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[841,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[848,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[853,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[858,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[863,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[868,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[873,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[878,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[883,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[888,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[893,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[898,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[903,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[908,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[913,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[918,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[923,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[928,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[933,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[938,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[943,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[950,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[955,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[960,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[965,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[970,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[975,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[980,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[985,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[990,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[995,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1000,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1005,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1010,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1015,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1020,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1025,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1030,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1035,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1040,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1045,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1050,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1055,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1060,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1065,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1070,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1075,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1082,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1087,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1092,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1097,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1102,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1107,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1112,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1117,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1122,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1127,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1132,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1137,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1142,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1147,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1152,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1157,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1162,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1167,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1172,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1177,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1182,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1187,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1192,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1197,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1202,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1207,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1214,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1219,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1224,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1229,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1234,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1239,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1244,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1249,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1254,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1259,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1264,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1269,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1276,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1281,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1286,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1291,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1296,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1301,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1306,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1311,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1316,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1321,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1326,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1333,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1338,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1343,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1348,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1353,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1358,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1363,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1368,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1373,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1378,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1383,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1388,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1393,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1398,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1403,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1408,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1413,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1418,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1423,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1428,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1433,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1438,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1443,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1448,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1453,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1458,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1463,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1468,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1473,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1478,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1483,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1488,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1495,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1500,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1505,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1510,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1515,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1520,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1525,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1530,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1535,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1540,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1547,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1552,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1557,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1562,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1567,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1572,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1577,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1582,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1587,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1592,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1597,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1604,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1609,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1614,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1619,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1624,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1629,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1634,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1641,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1646,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1651,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1656,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1661,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1666,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1671,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1676,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1681,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1686,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1691,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1698,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1703,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1708,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1713,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1718,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1723,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1728,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1733,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1738,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1745,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1750,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1755,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1760,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1765,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1770,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1775,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1780,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1787,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1792,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1797,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1802,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1807,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1812,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1817,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1822,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1827,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1832,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1838,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1843,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1850,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1855,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1860,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1865,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1870,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1875,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1880,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1887,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1894,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1899,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1904,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1909,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1914,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1919,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1924,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1929,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1934,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1939,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1946,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1951,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1956,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1961,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1966,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1971,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1976,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1981,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[1999,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2004,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2010,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2016,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2022,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2028,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2034,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2040,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2053,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2058,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2063,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2068,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2073,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2078,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2083,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2088,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2093,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2098,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2103,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2108,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2113,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2118,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2123,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2128,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2133,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2138,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2143,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2148,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2153,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2158,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2164,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2169,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2174,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2182,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2187,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2192,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2197,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2202,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2208,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2214,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2220,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2226,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2240,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2246,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2252,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2257,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2263,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2269,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2275,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2281,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2287,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2293,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2299,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2305,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2311,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2316,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2322,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2328,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2334,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2342,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2348,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2353,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2358,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2363,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2369,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2374,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2380,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2387,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2393,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2401,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2407,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2413,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2419,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2425,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2431,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2437,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2464,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2470,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2476,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2482,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2488,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2494,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2500,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2506,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2511,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2517,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2522,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2527,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2532,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2538,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2544,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2551,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2559,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2567,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2590,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2595,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2600,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2605,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2610,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2618,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2624,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2630,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2638,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2646,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2652,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2658,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2665,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2672,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2677,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2682,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2688,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2694,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2701,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2707,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2713,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2719,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2725,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2730,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2735,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2740,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2746,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2752,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2761,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2769,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2775,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2781,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2787,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2793,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2801,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2806,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2812,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2818,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2824,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2830,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2836,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2842,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2848,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2854,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2862,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2869,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2875,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2881,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2887,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2892,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2898,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2904,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2910,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2916,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2922,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2928,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2936,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2942,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2948,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2954,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2960,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2966,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2971,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2977,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2983,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2989,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[2995,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3000,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3006,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3012,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3018,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3024,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3030,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3036,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3044,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3050,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3058,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3064,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3070,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3075,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3080,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3087,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3093,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3099,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3105,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3111,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3117,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3123,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3129,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3135,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3141,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3147,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3153,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3159,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3165,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3171,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3176,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3182,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3190,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3198,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3208,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3214,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3219,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3225,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3230,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3236,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3242,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3248,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3256,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3262,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3269,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3275,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3285,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3291,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3299,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3304,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3310,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3316,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3322,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3327,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3333,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3339,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3345,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3352,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3358,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3364,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3370,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3378,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3384,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3390,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3397,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3403,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3408,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3414,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3420,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3426,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3432,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3438,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3444,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3449,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3454,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3460,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3466,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3472,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3478,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3484,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3490,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3496,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3502,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3508,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3515,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3521,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3527,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3533,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3539,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3547,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3552,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3558,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3564,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3572,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3579,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3584,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3590,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3596,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3604,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3612,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3617,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3623,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3629,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3635,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3643,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3649,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3655,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3660,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3665,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3670,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3678,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3686,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3692,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3698,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3703,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3709,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3715,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3723,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3729,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3734,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3740,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3746,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3752,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3758,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3764,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3770,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3776,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3782,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3790,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3798,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3804,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3810,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3816,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3822,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3828,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3836,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3842,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3849,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3855,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3863,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3869,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3875,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3881,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3889,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3895,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3902,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3908,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3914,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3920,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3926,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3932,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3938,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3944,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3949,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3954,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3962,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3968,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3977,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3983,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3991,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[3997,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4003,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4009,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4014,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4022,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4032,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4039,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4044,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4050,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4055,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4061,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4066,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4071,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4079,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4084,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4092,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4097,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4105,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4112,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4118,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4123,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4128,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4134,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4140,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4280,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4285,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4290,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4295,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4300,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4305,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4326,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4331,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4336,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4341,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4346,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4351,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4356,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4361,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4366,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4371,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4376,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4381,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4386,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4391,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4396,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4401,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4406,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4411,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4432,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4437,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4442,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4447,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4452,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4457,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4478,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4483,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4488,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4493,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4498,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4503,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4508,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4513,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4518,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4523,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4528,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4533,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4538,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4543,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4548,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4553,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4558,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4563,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4568,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4573,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4578,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4583,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4588,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4593,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4598,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4603,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4608,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4613,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4618,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4623,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4628,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4633,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4638,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4643,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4648,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4653,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4658,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4663,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4668,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4673,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4678,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4683,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4688,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4693,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4698,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4703,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4708,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4713,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4718,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4723,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4728,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4733,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4738,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4743,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4748,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4753,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4758,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4763,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4768,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4773,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4778,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4783,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4788,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4793,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4798,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4803,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4808,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4813,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4818,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4823,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4828,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4833,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4838,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4843,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4848,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4853,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4858,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4863,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4868,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4873,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4878,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4883,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4888,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4893,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4898,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4903,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4908,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4913,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4918,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4923,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4928,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4933,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4938,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4943,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4948,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4953,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4958,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4963,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4968,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4973,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4978,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4983,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4988,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4993,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[4998,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5003,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5008,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5029,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5034,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5039,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5044,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5049,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5054,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5059,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5064,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5069,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5074,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5079,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5084,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5089,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5094,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5099,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5104,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5109,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5114,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5135,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5140,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5145,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5150,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5155,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5160,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5165,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5170,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5175,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5180,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5185,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5190,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5195,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5200,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5205,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5211,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5216,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5221,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5226,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5231,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5236,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5241,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5246,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5267,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5272,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5277,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5282,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5287,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5292,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5297,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5302,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5307,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5312,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5317,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5322,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5327,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5332,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5337,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5358,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5363,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5368,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5373,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5378,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5383,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5388,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5393,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5398,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5403,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5408,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5413,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5418,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5423,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5428,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5433,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5446,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5451,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5456,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5461,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5466,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5471,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5476,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5481,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5486,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5491,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5496,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5501,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5506,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5511,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5517,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5522,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5527,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5532,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5537,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5542,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5547,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5552,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5558,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5563,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5568,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5573,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5578,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5583,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5588,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5593,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5598,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5603,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5608,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5629,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5634,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5639,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5644,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5665,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5670,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5675,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5680,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5685,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5690,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5748,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5753,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5758,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5763,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5768,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5773,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5778,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5783,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5788,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5793,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5798,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5803,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5808,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5813,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5818,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5823,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5836,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5841,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5846,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5851,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5856,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5861,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5866,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5871,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5876,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5881,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5886,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5891,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5896,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5901,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5906,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5911,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5916,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5921,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5926,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5931,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5936,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5941,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5946,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5951,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5956,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5961,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5966,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5971,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5976,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5981,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5986,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5991,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[5996,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6001,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6006,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6011,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6016,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6029,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6033,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6037,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6041,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6054,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6059,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6064,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6069,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6083,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6087,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6101,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6105,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6109,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6113,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6117,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6121,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6125,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6129,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6133,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6137,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6141,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6145,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[773,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns returns the errorOnReset value.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeMap.java:[1316,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/Utility.java:[1438,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns true for control codes and for surrogate and noncharacter code points.
icu4j/main/core/src/main/java/com/ibm/icu/impl/ValidIdentifiers.java:[23,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/breakiter/LanguageBreakEngine.java:[19,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns true if the engine can handle this character, false otherwise.
icu4j/main/core/src/main/java/com/ibm/icu/impl/breakiter/DictionaryMatcher.java:[45,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns the kind of dictionary that this matcher is using.
icu4j/main/core/src/main/java/com/ibm/icu/impl/breakiter/LSTMBreakEngine.java:[25,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/breakiter/LSTMBreakEngine.java:[72,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/Holiday.java:[28,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/Holiday.java:[35,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/Holiday.java:[42,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/Holiday.java:[173,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/Holiday.java:[180,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/duration/BasicDurationFormat.java:[17,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/duration/PeriodBuilderFactory.java:[15,0] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/KeyTypeData.java:[28,0] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/LocaleValidityChecker.java:[25,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/LocaleValidityChecker.java:[58,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns the datasubtypes.
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/MicroPropsMutator.java:[6,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/RoundingUtils.java:[14,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/ConversionRates.java:[121,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns the base units in the {@code SingleUnitImpl} with applying the dimensionality only
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/ConversionRates.java:[140,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns the measurement systems for the specified unit.
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/ConversionRates.java:[265,11] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns the base unit.
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/ConversionRates.java:[274,11] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns the offset from this unit to the base unit.
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/ConversionRates.java:[281,11] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns the conversion rate from this unit to the base unit.
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/ConversionRates.java:[292,11] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns the name of the special conversion system for this unit (used instead of factor +
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/ConversionRates.java:[300,11] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns the measurement systems this unit belongs to.
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/parse/AffixMatcher.java:[17,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/parse/IgnorablesMatcher.java:[10,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/parse/MinusSignMatcher.java:[10,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/parse/PlusSignMatcher.java:[10,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/parse/ApproximatelySignMatcher.java:[10,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/parse/PercentMatcher.java:[10,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/parse/PermilleMatcher.java:[10,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/parse/DecimalMatcher.java:[15,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/parse/DecimalMatcher.java:[136,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/parse/InfinityMatcher.java:[10,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/parse/NanMatcher.java:[10,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/parse/PaddingMatcher.java:[9,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/parse/RequireAffixValidator.java:[6,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/parse/RequireCurrencyValidator.java:[6,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/parse/RequireDecimalSeparatorValidator.java:[6,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/parse/RequireNumberValidator.java:[6,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/parse/ScientificMatcher.java:[13,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/SimpleFormatter.java:[86,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/UnitsData.java:[85,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns the corresponding category.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1345,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1350,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1355,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1360,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1365,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1370,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1375,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1380,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1385,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1390,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1395,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1400,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1405,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1410,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1415,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1420,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1425,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1430,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1435,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1440,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1445,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1450,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1455,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1460,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1465,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1470,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1475,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1480,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1485,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1490,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1495,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1500,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1505,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1510,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/segmenter/Segments.java:[174,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/segmenter/Segments.java:[179,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/segmenter/Segments.java:[184,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/segmenter/Segment.java:[17,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/segmenter/Segment.java:[22,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/segmenter/Segment.java:[27,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/segmenter/LocalizedSegmenter.java:[36,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/segmenter/LocalizedSegmenter.java:[70,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/segmenter/LocalizedSegmenter.java:[75,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/segmenter/LocalizedSegmenter.java:[80,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/segmenter/LocalizedSegmenter.java:[85,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/segmenter/RuleBasedSegmenter.java:[37,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[895,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[900,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[905,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[910,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[915,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[1386,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[1391,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[1396,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[1401,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[1406,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[1411,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[1416,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[1421,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[1426,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[1431,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[1436,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[1441,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[1446,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[1451,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[1456,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[1461,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/MessagePatternUtil.java:[85,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/MessagePatternUtil.java:[204,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/MessagePatternUtil.java:[236,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/MessagePatternUtil.java:[244,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/MessagePatternUtil.java:[252,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/MessagePatternUtil.java:[260,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/MessagePatternUtil.java:[268,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/MessagePatternUtil.java:[277,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/MessagePatternUtil.java:[331,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/MessagePatternUtil.java:[339,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/MessagePatternUtil.java:[347,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/MessagePatternUtil.java:[356,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/MessagePatternUtil.java:[454,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/MessagePatternUtil.java:[462,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/MessagePatternUtil.java:[470,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/text/QuantityFormatter.java:[47,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns true if this object has at least the "other" variant.
icu4j/main/core/src/main/java/com/ibm/icu/text/RBBIRuleScanner.java:[1121,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns the number of rules that have been seen.
icu4j/main/core/src/main/java/com/ibm/icu/util/HebrewHoliday.java:[39,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/HebrewHoliday.java:[45,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/HebrewHoliday.java:[51,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/HebrewHoliday.java:[57,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/HebrewHoliday.java:[62,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/HebrewHoliday.java:[68,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/HebrewHoliday.java:[74,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/HebrewHoliday.java:[80,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/HebrewHoliday.java:[85,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/HebrewHoliday.java:[91,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/HebrewHoliday.java:[97,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/HebrewHoliday.java:[103,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/HebrewHoliday.java:[108,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/HebrewHoliday.java:[114,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/HebrewHoliday.java:[120,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/HebrewHoliday.java:[126,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/HebrewHoliday.java:[132,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/HebrewHoliday.java:[138,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/HebrewHoliday.java:[144,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/HebrewHoliday.java:[150,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/HebrewHoliday.java:[156,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/HebrewHoliday.java:[161,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/HebrewHoliday.java:[167,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/HebrewHoliday.java:[173,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/JapaneseCalendar.java:[346,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/RangeDateRule.java:[39,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/RangeDateRule.java:[46,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/Region.java:[571,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/main/java/com/ibm/icu/util/Region.java:[589,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/TestDataModule.java:[32,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns iterator<TestData>.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/TestDataModule.java:[72,11] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns iterator<DataMap>.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/TestDataModule.java:[77,11] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns iterator<DataMap>.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/UnicodeMapTest.java:[35,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bidi/BiDiConformanceTest.java:[23,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[40,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[39,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/charsetdet/TestCharsetDetector.java:[37,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/duration/ICUDurationTest.java:[29,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/BigNumberFormatTest.java:[23,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/BigNumberFormatTest.java:[106,4] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/BigNumberFormatTest.java:[195,4] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/BigNumberFormatTest.java:[271,4] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[46,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[85,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[172,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[216,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[248,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[278,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[301,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[367,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[401,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[426,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[445,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[509,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[525,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[551,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[569,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[600,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[622,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[676,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[700,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[716,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[738,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[762,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateTimeGeneratorTest.java:[839,11] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/FormattedStringBuilderTest.java:[17,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/FormattedValueTest.java:[23,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestSimpleDateFormatAPI.java:[35,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/MessageRegressionTest.java:[532,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/MessageRegressionTest.java:[572,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/MessageRegressionTest.java:[614,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/MessageRegressionTest.java:[632,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/PluralFormatTest.java:[25,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/PluralFormatUnitTest.java:[37,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/PluralRulesFactory.java:[16,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/ScientificNumberFormatterTest.java:[21,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/SelectFormatAPITest.java:[21,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/SelectFormatUnitTest.java:[19,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/TimeUnitTest.java:[29,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/TimeUnitTest.java:[289,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/WriteNumberFormatSerialTestData.java:[19,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/impl/StringSegmentTest.java:[13,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/iterator/TestUCharacterIterator.java:[22,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterThreadTest.java:[20,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetStringSpanTest.java:[23,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[55,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/number/NumberSkeletonTest.java:[16,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/AbstractBreakIteratorTests.java:[15,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/BreakIteratorTest.java:[190,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/IDNAConformanceTest.java:[31,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/IDNAReference.java:[15,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/NamePrepTransform.java:[21,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/NFS4StringPrep.java:[20,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestData.java:[15,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[25,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestInputDataStructure.java:[17,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestInputDataStructure.java:[45,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns returns the desc.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestInputDataStructure.java:[52,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestInputDataStructure.java:[59,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns returns the failzone1.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestInputDataStructure.java:[66,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestInputDataStructure.java:[73,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns returns the failzone2.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestInputDataStructure.java:[80,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestInputDataStructure.java:[87,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns returns the namebase.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestInputDataStructure.java:[94,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestInputDataStructure.java:[101,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns returns the nameutf8.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestInputDataStructure.java:[108,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestInputDataStructure.java:[115,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns returns the namezone.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestInputDataStructure.java:[122,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestInputDataStructure.java:[129,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns returns the passfail.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestInputDataStructure.java:[136,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestInputDataStructure.java:[143,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns returns the token.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestInputDataStructure.java:[150,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestInputDataStructure.java:[157,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns returns the type.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestInputDataStructure.java:[164,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestStringPrepProfiles.java:[19,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/text/DisplayOptionsTest.java:[20,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timescale/TimeScaleDataTest.java:[25,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[47,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/CalendarFieldsSet.java:[14,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/FieldsSet.java:[14,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/FieldsSet.java:[79,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns a formatted string listing which fields are set in this, with the comparison made
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/FieldsSet.java:[113,7] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/CompactArrayTest.java:[20,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/DateTimeStyleSet.java:[14,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/DebugUtilities.java:[12,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/DebugUtilitiesTest.java:[17,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/RegionTest.java:[32,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/TestLocaleValidity.java:[30,3] A summary line is required on public/protected Javadocs.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/UtilityTest.java:[34,3] A summary line is required on public/protected Javadocs.
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/Collation.java:[363,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns true if the ce32 yields one or more CEs without further data lookups.
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationData.java:[500,7] A summary fragment is required; consider using the value of the @see block as a summary fragment instead.
Did you mean
*See {@link jamoCE32s}.
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationDataBuilder.java:[106,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns true if this builder has mappings (e.g., add() has been called).
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationDataBuilder.java:[113,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns true if c has CEs in this builder.
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationIterator.java:[466,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns false if surrogate code points U+D800..U+DFFF map to their own implicit primary
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationKeys.java:[50,11] A summary line is required on public/protected Javadocs.
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationKeys.java:[116,11] A summary line is required on public/protected Javadocs.
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationKeys.java:[129,11] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns true if the level is to be written (the base class implementation always returns
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/AlphabeticIndexTest.java:[44,3] A summary line is required on public/protected Javadocs.
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationIteratorTest.java:[94,7] A summary line is required on public/protected Javadocs.
icu4j/main/translit/src/main/java/com/ibm/icu/impl/UtilityExtensions.java:[17,3] A summary line is required on public/protected Javadocs.
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/AnyScriptTest.java:[23,3] A summary line is required on public/protected Javadocs.
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/CompoundTransliteratorTest.java:[20,3] A summary line is required on public/protected Javadocs.
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/ErrorTest.java:[20,3] A summary line is required on public/protected Javadocs.
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/JamoTest.java:[21,3] A summary line is required on public/protected Javadocs.
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/RegexUtilitiesTest.java:[28,3] A summary line is required on public/protected Javadocs.
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/ReplaceableTest.java:[21,3] A summary line is required on public/protected Javadocs.
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/RoundTripTest.java:[37,3] A summary line is required on public/protected Javadocs.
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/TransliteratorDisorderedMarksTest.java:[21,3] A summary line is required on public/protected Javadocs.
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/TransliteratorTest.java:[86,3] A summary line is required on public/protected Javadocs.
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[1552,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns index of the UChar, if found; else <0.
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[1600,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns lookup value for the byte, if found; else 0.
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetISO2022.java:[286,7] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns 1 roundtrip byte 0 no mapping -1 fallback byte.
icu4j/main/charset/src/main/java/com/ibm/icu/charset/UConverterConstants.java:[89,7] A summary line is required on public/protected Javadocs.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/calendar/DataDrivenCalendarTest.java:[32,3] A summary line is required on public/protected Javadocs.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DataDrivenFormatTest.java:[35,3] A summary line is required on public/protected Javadocs.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/serializable/SerializableTestUtility.java:[62,3] A summary line is required on public/protected Javadocs.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/serializable/FormatHandler.java:[56,3] A summary line is required on public/protected Javadocs.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatSpecificationTest.java:[22,3] A summary line is required on public/protected Javadocs.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/PluralRangesTest.java:[30,3] A summary line is required on public/protected Javadocs.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/PluralRulesTest.java:[69,3] A summary line is required on public/protected Javadocs.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/number/NumberParserTest.java:[27,3] A summary line is required on public/protected Javadocs.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/number/NumberPermutationTest.java:[16,3] A summary line is required on public/protected Javadocs.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/number/NumberRangeFormatterTest.java:[39,3] A summary line is required on public/protected Javadocs.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/number/PatternStringTest.java:[21,3] A summary line is required on public/protected Javadocs.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/serializable/CalendarHandler.java:[31,3] A summary line is required on public/protected Javadocs.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/serializable/CompatibilityTest.java:[33,3] A summary line is required on public/protected Javadocs.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/serializable/CoverageTest.java:[22,3] A summary line is required on public/protected Javadocs.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/serializable/ExceptionHandler.java:[24,3] A summary line is required on public/protected Javadocs.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNARef.java:[19,3] A summary line is required on public/protected Javadocs.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestStringPrep.java:[20,3] A summary line is required on public/protected Javadocs.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/CurrencyTest.java:[40,3] A summary line is required on public/protected Javadocs.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/LocaleDataTest.java:[27,3] A summary line is required on public/protected Javadocs.
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/Launcher.java:[30,3] A summary line is required on public/protected Javadocs.
icu4j/samples/src/main/java/com/ibm/icu/samples/iuc/PopulationData.java:[20,3] A summary line is required on public/protected Javadocs.
icu4j/samples/src/main/java/com/ibm/icu/samples/iuc/Sample30_ResHello.java:[15,3] A summary line is required on public/protected Javadocs.
icu4j/samples/src/main/java/com/ibm/icu/samples/iuc/Sample40_PopMsg.java:[24,3] A summary line is required on public/protected Javadocs.
icu4j/samples/src/main/java/com/ibm/icu/samples/iuc/Sample50_PopSort.java:[27,3] A summary line is required on public/protected Javadocs.
icu4j/samples/src/main/java/com/ibm/icu/samples/iuc/SupplementalUtilities.java:[16,3] A summary line is required on public/protected Javadocs.
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/docs/CollectAPI.java:[21,3] A summary line is required on public/protected Javadocs.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/charsetdet/sbcs/Checker.java:[14,3] A summary line is required on public/protected Javadocs.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/charsetdet/sbcs/NGramParser.java:[16,3] A summary line is required on public/protected Javadocs.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/charsetdet/sbcs/NGramList.java:[17,3] A summary line is required on public/protected Javadocs.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/charsetdet/sbcs/InputFile.java:[25,3] A summary line is required on public/protected Javadocs.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/charsetdet/sbcs/StatisticsTool.java:[24,3] A summary line is required on public/protected Javadocs.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/BuildMirroringTables.java:[18,3] A summary line is required on public/protected Javadocs.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/CanonGSUBBuilder.java:[17,3] A summary line is required on public/protected Javadocs.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/DecompTable.java:[15,3] A summary line is required on public/protected Javadocs.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/OpenTypeTagBuilder.java:[12,3] A summary line is required on public/protected Javadocs.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/ShapingTypeBuilder.java:[19,3] A summary line is required on public/protected Javadocs.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/translit/WriteIndicCharts.java:[22,3] A summary line is required on public/protected Javadocs.
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/PerfTest.java:[102,11] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns the names for all available test.
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/PerfTest.java:[107,11] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns whether the given name is a test name. The implementation may have more
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/PerfTest.java:[114,11] A summary fragment is required; consider using the value of the @return block as a summary fragment instead.
Did you mean
*Returns the test Command or null.
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/ConverterPerformanceTest.java:[25,3] A summary line is required on public/protected Javadocs.
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/DateFormatPerformanceTest.java:[16,3] A summary line is required on public/protected Javadocs.
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/DecimalFormatPerformanceTest.java:[15,3] A summary line is required on public/protected Javadocs.

[ERROR] MisusedDayOfYear (1) 🔗

File and line number Message
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1609,25] Use of 'DD' (day of year) in a date pattern with 'MM' (month of year) is not likely to be intentional, as it would lead to dates like 'March 73rd'.
Did you mean
DateFormat fmt = new SimpleDateFormat("E dd MMM yyyy 'DOY='d 'WOY='w");

[ERROR] MisusedWeekYear (3) 🔗

File and line number Message
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IndianTest.java:[245,25] Use of "YYYY" (week year) in a date pattern without "ww" (week in year). You probably meant to use "yyyy" (year) instead.
Did you mean
DateFormat fmt = new SimpleDateFormat("yyyy-MM-dd", ULocale.US);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[4544,16] Use of "YYYY" (week year) in a date pattern without "ww" (week in year). You probably meant to use "yyyy" (year) instead.
Did you mean
f = new SimpleDateFormat("yesterday");
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[7754,37] Use of "YYYY" (week year) in a date pattern without "ww" (week in year). You probably meant to use "yyyy" (year) instead.
Did you mean
simpleDateFormat.applyPattern("y");

[WARNING] ModifiedButNotUsed (5) 🔗

File and line number Message
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/TrieMapTest.java:[175,44] A collection or proto builder was created, but its values were never accessed.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/TrieMapTest.java:[369,52] A collection or proto builder was created, but its values were never accessed.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/TrieMapTest.java:[389,52] A collection or proto builder was created, but its values were never accessed.
Did you mean to remove this line?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/MeasureUnitGeneratorTest.java:[681,54] A collection or proto builder was created, but its values were never accessed.
Did you mean to remove this line or to remove this line?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[1265,45] A collection or proto builder was created, but its values were never accessed.
Did you mean to remove this line?

[WARNING] ModifyCollectionInEnhancedForLoop (2) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/impl/Relation.java:[295,24] Modifying a collection while iterating over it in a loop may cause a ConcurrentModificationException to be thrown or lead to undefined behavior.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeRegex.java:[226,37] Modifying a collection while iterating over it in a loop may cause a ConcurrentModificationException to be thrown or lead to undefined behavior.

[ICU_PRIORITY_1] MutablePublicArray (34) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/impl/duration/impl/DataRecord.java:[195,37] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/main/core/src/main/java/com/ibm/icu/impl/duration/impl/DataRecord.java:[202,37] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/main/core/src/main/java/com/ibm/icu/impl/duration/impl/DataRecord.java:[209,37] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/main/core/src/main/java/com/ibm/icu/impl/duration/impl/DataRecord.java:[219,37] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/main/core/src/main/java/com/ibm/icu/impl/duration/impl/DataRecord.java:[231,37] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/main/core/src/main/java/com/ibm/icu/impl/duration/impl/DataRecord.java:[240,37] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/main/core/src/main/java/com/ibm/icu/impl/duration/impl/DataRecord.java:[248,37] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/main/core/src/main/java/com/ibm/icu/impl/duration/impl/DataRecord.java:[256,37] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/main/core/src/main/java/com/ibm/icu/impl/duration/impl/DataRecord.java:[264,37] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/main/core/src/main/java/com/ibm/icu/impl/duration/impl/DataRecord.java:[274,37] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/main/core/src/main/java/com/ibm/icu/impl/duration/impl/DataRecord.java:[283,37] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/main/core/src/main/java/com/ibm/icu/impl/duration/impl/DataRecord.java:[290,37] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/main/core/src/main/java/com/ibm/icu/impl/duration/impl/DataRecord.java:[297,37] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/main/core/src/main/java/com/ibm/icu/impl/duration/impl/DataRecord.java:[304,37] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/main/core/src/main/java/com/ibm/icu/text/SCSU.java:[134,23] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/main/core/src/main/java/com/ibm/icu/text/SCSU.java:[395,23] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[1072,33] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestData.java:[20,33] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestData.java:[126,33] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestData.java:[152,33] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestData.java:[186,33] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestData.java:[205,33] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestData.java:[221,33] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestData.java:[262,36] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestData.java:[514,46] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/DebugUtilitiesData.java:[23,33] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/DebugUtilitiesData.java:[32,35] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/DebugUtilitiesData.java:[109,32] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/main/charset/src/main/java/com/ibm/icu/charset/UConverterConstants.java:[105,18] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/main/charset/src/main/java/com/ibm/icu/charset/UConverterConstants.java:[108,18] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/rbnf/RbnfSampleRuleSets.java:[1584,33] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/rbnf/RbnfSampleRuleSets.java:[1622,33] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/rbnf/RbnfSampleRuleSets.java:[1663,33] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/rbnf/RbnfSampleRuleSets.java:[1699,33] Non-empty arrays are mutable, so this `public static final` array is not a constant and can be modified by clients of this class. Prefer an ImmutableList, or provide an accessor method that returns a defensive copy.

[ICU_PRIORITY_2] NarrowCalculation (32) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/impl/Grego.java:[106,20] This product of integers could overflow before being implicitly cast to a long.
Did you mean
365L * y
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[5661,34] This product of integers could overflow before being implicitly cast to a long.
Did you mean
millisInDay += 12L * internalGet(AM_PM);
icu4j/main/core/src/main/java/com/ibm/icu/util/AnnualTimeZoneRule.java:[125,33] This product of integers could overflow before being implicitly cast to a long.
Did you mean
ruleDay += 7L * (weeks - 1);
icu4j/main/core/src/main/java/com/ibm/icu/util/AnnualTimeZoneRule.java:[133,33] This product of integers could overflow before being implicitly cast to a long.
Did you mean
ruleDay += 7L * (weeks + 1);
icu4j/main/core/src/main/java/com/ibm/icu/text/PluralRules.java:[986,45] This product of integers could overflow before being implicitly cast to a long.
Did you mean
return (int) (decimalDigits + 37L * (visibleDecimalDigitCount + (int) (37 * source)));
icu4j/main/core/src/main/java/com/ibm/icu/text/NFRule.java:[738,69] This division will discard the fractional part of the result, despite being assigned to a float.
Did you mean
toInsertInto.insert(pos, rulePatternFormat.format(number / ((double) power(radix, exponent))));
icu4j/main/core/src/main/java/com/ibm/icu/text/NFSubstitution.java:[727,40] This division will discard the fractional part of the result, despite being assigned to a float.
Did you mean
return (long) Math.floor(number / ((double) divisor));
icu4j/main/core/src/main/java/com/ibm/icu/util/CECalendar.java:[304,29] This product of integers could overflow before being implicitly cast to a long.
Did you mean
+ 30L * month
icu4j/main/core/src/main/java/com/ibm/icu/util/HebrewCalendar.java:[629,25] This product of integers could overflow before being implicitly cast to a long.
Did you mean
day = months * 29L + (frac / DAY_PARTS);
icu4j/main/core/src/main/java/com/ibm/icu/util/IslamicCalendar.java:[476,30] This product of integers could overflow before being implicitly cast to a long.
Did you mean
return (year - 1) * 354L + (long) Math.floor((3 + 11 * year) / 30.0);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[888,53] This product of integers could overflow before being implicitly cast to a long.
Did you mean
long cease = tempcal.getTime().getTime() + 2L * ONE_HOUR;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarTestFmwk.java:[290,31] This product of integers could overflow before being implicitly cast to a long.
Did you mean
millis -= testDuration * 1000L;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[113,47] This product of integers could overflow before being implicitly cast to a long.
Did you mean
Date d = new Date(co.getTime() + i * ((long) ONE_DAY));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[758,59] This division will discard the fractional part of the result, despite being assigned to a float.
Did you mean
logln("offset for " + date + "= " + (offset / 1000 / 60.0 / 60.0) + "hr");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[774,55] This division will discard the fractional part of the result, despite being assigned to a float.
Did you mean
+ ((utc - expected) / 1000 / 60.0 / 60.0)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/duration/ICUDurationTest.java:[483,74] This product of integers could overflow before being implicitly cast to a long.
Did you mean
long target = System.currentTimeMillis() + test.diffInSeconds * 1000L;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/FormattedStringBuilderTest.java:[175,38] This product of integers could overflow before being implicitly cast to a long.
Did you mean
assertEquals(str.length() * 2L, fields.length);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/FormattedStringBuilderTest.java:[188,38] This product of integers could overflow before being implicitly cast to a long.
Did you mean
assertEquals(str.length() * 2L, fp.getEndIndex());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/FormattedStringBuilderTest.java:[216,38] This product of integers could overflow before being implicitly cast to a long.
Did you mean
assertEquals(str.length() * 4L, numNull);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/PluralFormatUnitTest.java:[79,47] This product of integers could overflow before being implicitly cast to a long.
Did you mean
String result = numberFmt.format(n * ((long) n));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/PluralFormatUnitTest.java:[82,61] This product of integers could overflow before being implicitly cast to a long.
Did you mean
String pfResult = plFmts[k].format((long) (n * ((long) n)), sb, ignore).toString();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterCaseTest.java:[1331,40] This product of integers could overflow before being implicitly cast to a long.
Did you mean
assertEquals("ascending", i * 2L, iter.sourceIndexFromDestinationIndex(i));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterCaseTest.java:[1336,41] This product of integers could overflow before being implicitly cast to a long.
Did you mean
assertEquals("descending", i * 2L, iter.sourceIndexFromDestinationIndex(i));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/RBBITest.java:[823,69] This product of integers could overflow before being implicitly cast to a long.
Did you mean
assertEquals("next() mismatch numChar=" + numChar, i * 2L, pos);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/RBBITest.java:[832,73] This product of integers could overflow before being implicitly cast to a long.
Did you mean
assertEquals("previous() mismatch numChar=" + numChar, i * 2L, pos);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneBoundaryTest.java:[507,61] This product of integers could overflow before being implicitly cast to a long.
Did you mean
tempcal.setTimeInMillis(d.getTime() + i * 60 * 1000L);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRegressionTest.java:[851,44] This product of integers could overflow before being implicitly cast to a long.
Did you mean
Date d = new Date(start + i * ((long) ONE_HOUR));
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetEncoderICU.java:[103,60] This division will discard the fractional part of the result, despite being assigned to a float.
Did you mean
super(cs, (cs.minBytesPerChar + cs.maxBytesPerChar) / 2f, cs.maxBytesPerChar, replacement);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/number/PropertiesTest.java:[262,43] This product of integers could overflow before being implicitly cast to a long.
Did you mean
return BigInteger.valueOf(seed * 1000003L).toString(32);
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarPanel.java:[215,41] This division will discard the fractional part of the result, despite being assigned to a float.
Did you mean
h -= fm.stringWidth(dayName) / 2.0;
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarPanel.java:[220,57] This division will discard the fractional part of the result, despite being assigned to a float.
Did you mean
double cellHeight = (d.height - labelHeight - 1) / ((double) numWeeks);
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/holiday/HolidayCalendarDemo.java:[583,61] This division will discard the fractional part of the result, despite being assigned to a float.
Did you mean
double cellHeight = (d.height - labelHeight - 1) / ((double) numWeeks);

[ICU_PRIORITY_2] NarrowingCompoundAssignment [FragileCode] (53) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/AsciiUtil.java:[43,14] Compound assignments from int to char hide lossy casts
Did you mean
c = (char) (c - 0x20);
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/AsciiUtil.java:[50,14] Compound assignments from int to char hide lossy casts
Did you mean
c = (char) (c + 0x20);
icu4j/main/core/src/main/java/com/ibm/icu/impl/CaseMapImpl.java:[488,21] Compound assignments from int to char hide lossy casts
Did you mean
lead = (char) (lead + delta);
icu4j/main/core/src/main/java/com/ibm/icu/impl/CaseMapImpl.java:[577,21] Compound assignments from int to char hide lossy casts
Did you mean
lead = (char) (lead + delta);
icu4j/main/core/src/main/java/com/ibm/icu/impl/OlsonTimeZone.java:[930,20] Compound assignments from long to int hide lossy casts
Did you mean
ret = (int) (ret + (transitionTimes64[i] ^ (transitionTimes64[i] >>> 8)));
icu4j/main/core/src/main/java/com/ibm/icu/impl/Punycode.java:[87,18] Compound assignments from int to char hide lossy casts
Did you mean
b = (char) (b - (SMALL_A - CAPITAL_A));
icu4j/main/core/src/main/java/com/ibm/icu/impl/Punycode.java:[91,18] Compound assignments from int to char hide lossy casts
Did you mean
b = (char) (b + (SMALL_A - CAPITAL_A));
icu4j/main/core/src/main/java/com/ibm/icu/impl/Utility.java:[1697,16] Compound assignments from int to byte hide lossy casts
Did you mean
bit = (byte) (bit + 16);
icu4j/main/core/src/main/java/com/ibm/icu/impl/Utility.java:[1702,16] Compound assignments from int to byte hide lossy casts
Did you mean
bit = (byte) (bit + 8);
icu4j/main/core/src/main/java/com/ibm/icu/impl/Utility.java:[1707,16] Compound assignments from int to byte hide lossy casts
Did you mean
bit = (byte) (bit + 4);
icu4j/main/core/src/main/java/com/ibm/icu/impl/Utility.java:[1712,16] Compound assignments from int to byte hide lossy casts
Did you mean
bit = (byte) (bit + 2);
icu4j/main/core/src/main/java/com/ibm/icu/impl/Utility.java:[1717,16] Compound assignments from int to byte hide lossy casts
Did you mean
bit = (byte) (bit + 1);
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScriptRun.java:[511,16] Compound assignments from int to byte hide lossy casts
Did you mean
bit = (byte) (bit + 16);
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScriptRun.java:[516,16] Compound assignments from int to byte hide lossy casts
Did you mean
bit = (byte) (bit + 8);
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScriptRun.java:[521,16] Compound assignments from int to byte hide lossy casts
Did you mean
bit = (byte) (bit + 4);
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScriptRun.java:[526,16] Compound assignments from int to byte hide lossy casts
Did you mean
bit = (byte) (bit + 2);
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScriptRun.java:[531,16] Compound assignments from int to byte hide lossy casts
Did you mean
bit = (byte) (bit + 1);
icu4j/main/core/src/main/java/com/ibm/icu/text/ArabicShaping.java:[2329,40] Compound assignments from int to char hide lossy casts
Did you mean
temp[i] = (char) (temp[i] + digitDelta);
icu4j/main/core/src/main/java/com/ibm/icu/text/ArabicShaping.java:[2342,40] Compound assignments from int to char hide lossy casts
Did you mean
temp[i] = (char) (temp[i] + digitDelta);
icu4j/main/core/src/main/java/com/ibm/icu/text/Bidi.java:[3289,44] Compound assignments from int to byte hide lossy casts
Did you mean
levels[k--] = (byte) (levels[k--] - 2);
icu4j/main/core/src/main/java/com/ibm/icu/text/Bidi.java:[3307,38] Compound assignments from int to byte hide lossy casts
Did you mean
levels[k] = (byte) (levels[k] - 2);
icu4j/main/core/src/main/java/com/ibm/icu/text/UTF16.java:[2575,23] Compound assignments from int to char hide lossy casts
Did you mean
c1 = (char) (c1 - CODE_POINT_COMPARE_SURROGATE_OFFSET_);
icu4j/main/core/src/main/java/com/ibm/icu/text/UTF16.java:[2587,23] Compound assignments from int to char hide lossy casts
Did you mean
c2 = (char) (c2 - CODE_POINT_COMPARE_SURROGATE_OFFSET_);
icu4j/main/core/src/test/java/com/ibm/icu/dev/impl/number/DecimalQuantity_ByteArrayBCD.java:[121,26] Compound assignments from long to int hide lossy casts
Did you mean
for (; n != 0L; n = (int) (n / 10L), i++) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/PunycodeReference.java:[183,18] Compound assignments from long to int hide lossy casts
Did you mean
delta = (int) (delta + (m - n) * (h + 1));
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationSettings.java:[125,14] Compound assignments from long to int hide lossy casts
Did you mean
h = (int) (h ^ variableTop);
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/WriteCharts.java:[197,22] Compound assignments from int to char hide lossy casts
Did you mean
group = (char) (group | 1);
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/WriteCharts.java:[204,22] Compound assignments from int to char hide lossy casts
Did you mean
group = (char) (group | 2);
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/WriteCharts.java:[206,22] Compound assignments from int to char hide lossy casts
Did you mean
group = (char) (group | 4);
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/WriteCharts.java:[210,22] Compound assignments from int to char hide lossy casts
Did you mean
group = (char) (group | 16);
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/WriteCharts.java:[283,22] Compound assignments from int to char hide lossy casts
Did you mean
group = (char) (group | 8);
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/WriteCharts.java:[286,22] Compound assignments from int to char hide lossy casts
Did you mean
group = (char) (group | 16);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[341,27] Compound assignments from long to int hide lossy casts
Did you mean
result = (int) (result | ((BOCU1_START_POS_4 & UConverterConstants.UNSIGNED_INT_MASK)) << 24);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[627,30] Compound assignments from long to int hide lossy casts
Did you mean
tableInts[stage2] = (int) (tableInts[stage2] | (1L << shift));
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetISO2022.java:[1375,23] Compound assignments from int to char hide lossy casts
Did you mean
c2 = (char) (c2 + 0x1f);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetISO2022.java:[1377,23] Compound assignments from int to char hide lossy casts
Did you mean
c2 = (char) (c2 + 0x20);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetISO2022.java:[1383,23] Compound assignments from int to char hide lossy casts
Did you mean
c2 = (char) (c2 + 0x7e);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetISO2022.java:[1391,19] Compound assignments from int to char hide lossy casts
Did you mean
c1 = (char) (c1 + 0x70);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetISO2022.java:[1393,19] Compound assignments from int to char hide lossy casts
Did you mean
c1 = (char) (c1 + 0xb0);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetISO2022.java:[2524,28] Compound assignments from int to char hide lossy casts
Did you mean
csm = (char) (csm & ~CSM(HWKANA_7BIT));
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetISO2022.java:[2528,28] Compound assignments from int to char hide lossy casts
Did you mean
csm = (char) (csm & ~CSM(cs));
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetISO2022.java:[2533,32] Compound assignments from int to char hide lossy casts
Did you mean
csm = (char) (csm & ~CSM(cs));
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetISO2022.java:[2541,36] Compound assignments from int to char hide lossy casts
Did you mean
csm = (char) (csm & ~CSM(cs));
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[2347,28] Compound assignments from double to float hide lossy casts
Did you mean
num = (float) (num + 3.14159);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[2352,28] Compound assignments from double to float hide lossy casts
Did you mean
num = (float) (num - 3.14159);
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethodImpl.java:[136,16] Compound assignments from int to byte hide lossy casts
Did you mean
bit = (byte) (bit + 16);
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethodImpl.java:[141,16] Compound assignments from int to byte hide lossy casts
Did you mean
bit = (byte) (bit + 8);
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethodImpl.java:[146,16] Compound assignments from int to byte hide lossy casts
Did you mean
bit = (byte) (bit + 4);
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethodImpl.java:[151,16] Compound assignments from int to byte hide lossy casts
Did you mean
bit = (byte) (bit + 2);
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/indic/IndicInputMethodImpl.java:[156,16] Compound assignments from int to byte hide lossy casts
Did you mean
bit = (byte) (bit + 1);
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/ArabicShaping.java:[103,31] Compound assignments from int to char hide lossy casts
Did you mean
chars[ern] = (char) (chars[ern] + 2);
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/ArabicShaping.java:[121,23] Compound assignments from int to char hide lossy casts
Did you mean
chars[ern] = (char) (chars[ern] + 2);
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/ThaiCharacterClasses.java:[269,52] Compound assignments from int to char hide lossy casts
Did you mean
for (char ch = '\u0E00'; ch <= '\u0E5B'; ch = (char) (ch + 1)) {

[WARNING] NonApiType (40) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeSetStringSpan.java:[82,58] Prefer a java.util.List instead.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeSetStringSpan.java:[222,36] Prefer a java.util.List instead.
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/MeasureUnitImpl.java:[117,20] Prefer a java.util.List instead.
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/MeasureUnitImpl.java:[129,20] Prefer a java.util.List instead.
icu4j/main/core/src/main/java/com/ibm/icu/impl/ICUResourceBundle.java:[1615,49] Prefer a java.util.Map instead.
icu4j/main/core/src/main/java/com/ibm/icu/impl/ICUResourceBundle.java:[1799,36] Prefer a java.util.Map instead.
icu4j/main/core/src/main/java/com/ibm/icu/impl/ICUResourceBundle.java:[1824,36] Prefer a java.util.Map instead.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[841,49] Prefer a java.util.Map instead.
icu4j/main/core/src/main/java/com/ibm/icu/util/UResourceBundle.java:[858,47] Prefer a java.util.Map instead.
icu4j/main/core/src/main/java/com/ibm/icu/impl/ICUResourceBundleImpl.java:[38,36] Prefer a java.util.Map instead.
icu4j/main/core/src/main/java/com/ibm/icu/impl/ICUResourceBundleImpl.java:[182,40] Prefer a java.util.Map instead.
icu4j/main/core/src/main/java/com/ibm/icu/impl/ICUResourceBundleImpl.java:[229,40] Prefer a java.util.Map instead.
icu4j/main/core/src/main/java/com/ibm/icu/impl/ICUResourceBundleImpl.java:[237,51] Prefer a java.util.Map instead.
icu4j/main/core/src/main/java/com/ibm/icu/impl/ICUResourceBundleImpl.java:[270,55] Prefer a java.util.Map instead.
icu4j/main/core/src/main/java/com/ibm/icu/impl/ICUResourceBundleImpl.java:[282,51] Prefer a java.util.Map instead.
icu4j/main/core/src/main/java/com/ibm/icu/impl/StringRange.java:[126,29] Prefer a java.util.List instead.
icu4j/main/core/src/main/java/com/ibm/icu/impl/breakiter/MlBreakEngine.java:[176,31] Prefer a java.util.List instead.
icu4j/main/core/src/main/java/com/ibm/icu/impl/breakiter/MlBreakEngine.java:[279,91] Prefer a java.util.Map instead.
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/UnitsConverter.java:[113,37] Prefer a java.util.Map instead.
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/UnitsConverter.java:[114,38] Prefer a java.util.List instead.
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/UnitsConverter.java:[129,72] Prefer a java.util.Map instead.
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/ConversionRates.java:[110,20] Prefer a java.util.List instead.
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/ConversionRates.java:[127,20] Prefer a java.util.List instead.
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/ConversionRates.java:[219,22] Prefer a java.util.Map instead.
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/UnitPreferences.java:[199,22] Prefer a java.util.Map instead.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[467,68] Prefer a java.util.Map instead.
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[2268,19] Prefer a java.util.Set instead.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/UnicodeMapTest.java:[298,90] Prefer a java.util.Map instead.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/impl/UnitsTest.java:[794,52] Prefer a java.util.List instead.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/IDNAConformanceTest.java:[254,29] Prefer a java.util.Map instead.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/TrieMapTest.java:[532,30] Prefer a java.util.List instead.
icu4j/main/collate/src/main/java/com/ibm/icu/text/AlphabeticIndex.java:[1173,48] Prefer a java.util.List instead.
icu4j/main/collate/src/main/java/com/ibm/icu/text/AlphabeticIndex.java:[1173,81] Prefer a java.util.List instead.
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/AlphabeticIndexTest.java:[667,73] Prefer a java.util.List instead.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/MeasureUnitGeneratorTest.java:[586,26] Prefer a java.util.Map instead.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/MeasureUnitTest.java:[1196,18] Prefer a java.util.Map instead.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[3745,86] Prefer a java.util.List instead.
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/docs/ReportAPI.java:[527,68] Prefer a java.util.Set instead.
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/docs/ReportAPI.java:[527,26] Prefer a java.util.Set instead.
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/charsetdet/sbcs/StatisticsTool.java:[215,43] Prefer a java.util.List instead.

[WARNING] NonCanonicalType (7) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/util/MutableCodePointTrie.java:[159,36] The type `CodePointMap.ValueFilter` was referred to by the non-canonical name `CodePointTrie.ValueFilter`. This may be misleading.
Did you mean
int start, ValueFilter filter, CodePointTrie.Range range) {
icu4j/main/core/src/main/java/com/ibm/icu/util/MutableCodePointTrie.java:[159,70] The type `CodePointMap.Range` was referred to by the non-canonical name `CodePointTrie.Range`. This may be misleading.
Did you mean
int start, CodePointTrie.ValueFilter filter, Range range) {
icu4j/main/core/src/main/java/com/ibm/icu/text/CharsetDetector.java:[461,62] The type `CharsetRecog_mbcs.CharsetRecog_gb_18030` was referred to by the non-canonical name `CharsetRecog_mbcs.CharsetRecog_euc.CharsetRecog_gb_18030`. This may be misleading.
Did you mean
new CharsetRecog_mbcs.CharsetRecog_gb_18030(), true));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/TrieMap.java:[69,46] The type `TrieMap.BytesBuilder` was referred to by the non-canonical name `TrieMap.BytesTrieMap.BytesBuilder`. This may be misleading.
Did you mean
? new BytesBuilder<V>()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/TrieMap.java:[70,46] The type `TrieMap.CharsBuilder` was referred to by the non-canonical name `TrieMap.CharsTrieMap.CharsBuilder`. This may be misleading.
Did you mean
: new CharsBuilder<V>();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/TrieMap.java:[83,46] The type `TrieMap.BytesBuilder` was referred to by the non-canonical name `TrieMap.BytesTrieMap.BytesBuilder`. This may be misleading.
Did you mean
? new BytesBuilder<V>()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/TrieMap.java:[84,46] The type `TrieMap.CharsBuilder` was referred to by the non-canonical name `TrieMap.CharsTrieMap.CharsBuilder`. This may be misleading.
Did you mean
: new CharsBuilder<V>();

[WARNING] NonOverridingEquals [FragileCode] (6) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[4459,23] equals method doesn't override Object.equals
Did you mean
@Override
icu4j/main/core/src/main/java/com/ibm/icu/text/CurrencyMetaInfo.java:[344,23] equals method doesn't override Object.equals; if this is a type-specific helper for a method that does override Object.equals, either inline it into the callers or rename it to avoid ambiguity
icu4j/main/core/src/main/java/com/ibm/icu/text/PluralRules.java:[2626,19] equals method doesn't override Object.equals; if this is a type-specific helper for a method that does override Object.equals, either inline it into the callers or rename it to avoid ambiguity
icu4j/main/core/src/main/java/com/ibm/icu/text/PluralFormat.java:[914,19] equals method doesn't override Object.equals; if this is a type-specific helper for a method that does override Object.equals, either inline it into the callers or rename it to avoid ambiguity
icu4j/main/core/src/main/java/com/ibm/icu/impl/duration/Period.java:[258,19] equals method doesn't override Object.equals; if this is a type-specific helper for a method that does override Object.equals, either inline it into the callers or rename it to avoid ambiguity
icu4j/main/collate/src/main/java/com/ibm/icu/text/CollationKey.java:[289,19] equals method doesn't override Object.equals; if this is a type-specific helper for a method that does override Object.equals, either inline it into the callers or rename it to avoid ambiguity

[WARNING] NotJavadoc (24) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/text/UnicodeSet.java:[2943,8] Avoid using `/**` for comments which aren't actually Javadoc.
Did you mean
/*
icu4j/main/core/src/main/java/com/ibm/icu/util/VersionInfo.java:[591,4] Avoid using `/**` for comments which aren't actually Javadoc.
Did you mean
/* Initialize versions only after MAP_ has been created */
icu4j/main/core/src/main/java/com/ibm/icu/util/CodePointTrie.java:[134,12] Avoid using `/**` for comments which aren't actually Javadoc.
Did you mean
/* "Tri3" in big-endian US-ASCII (0x54726933) */
icu4j/main/core/src/main/java/com/ibm/icu/util/CodePointTrie.java:[154,12] Avoid using `/**` for comments which aren't actually Javadoc.
Did you mean
/*
icu4j/main/core/src/main/java/com/ibm/icu/util/CodePointTrie.java:[161,12] Avoid using `/**` for comments which aren't actually Javadoc.
Did you mean
/* Total length of the index tables. */
icu4j/main/core/src/main/java/com/ibm/icu/util/CodePointTrie.java:[164,12] Avoid using `/**` for comments which aren't actually Javadoc.
Did you mean
/* Data length bits 15..0. */
icu4j/main/core/src/main/java/com/ibm/icu/util/CodePointTrie.java:[167,12] Avoid using `/**` for comments which aren't actually Javadoc.
Did you mean
/* Index-3 null block offset, 0x7fff or 0xffff if none. */
icu4j/main/core/src/main/java/com/ibm/icu/util/CodePointTrie.java:[170,12] Avoid using `/**` for comments which aren't actually Javadoc.
Did you mean
/* Data null block offset bits 15..0, 0xfffff if none. */
icu4j/main/core/src/main/java/com/ibm/icu/util/CodePointTrie.java:[173,12] Avoid using `/**` for comments which aren't actually Javadoc.
Did you mean
/*
icu4j/main/core/src/main/java/com/ibm/icu/impl/Punycode.java:[220,24] Avoid using `/**` for comments which aren't actually Javadoc.
Did you mean
/*
icu4j/main/core/src/main/java/com/ibm/icu/text/ArabicShaping.java:[1130,8] Avoid using `/**` for comments which aren't actually Javadoc.
Did you mean
/*0******1******2******3******4******5******6******7******8******9******A******B******C******D******E******F***/
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/charsetdet/TestCharsetDetector.java:[904,8] Avoid using `/**` for comments which aren't actually Javadoc.
Did you mean
/* transformation of input string to CP420 left to right requires reversing the string */
icu4j/main/core/src/test/java/com/ibm/icu/dev/tool/locale/LocaleDistanceBuilder.java:[574,8] Avoid using `/**` for comments which aren't actually Javadoc.
Did you mean
/*
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationFastLatin.java:[303,8] Avoid using `/**` for comments which aren't actually Javadoc.
Did you mean
/*
icu4j/main/translit/src/main/java/com/ibm/icu/text/CompoundTransliterator.java:[361,8] Avoid using `/**` for comments which aren't actually Javadoc.
Did you mean
/*
icu4j/main/charset/src/main/java/com/ibm/icu/charset/UConverterConstants.java:[145,8] Avoid using `/**` for comments which aren't actually Javadoc.
Did you mean
/*
icu4j/samples/src/main/java/com/ibm/icu/samples/text/dateintervalformat/DateIntervalFormatSample.java:[70,8] Avoid using `/**` for comments which aren't actually Javadoc.
Did you mean
/*
icu4j/samples/src/main/java/com/ibm/icu/samples/text/dateintervalformat/DateIntervalFormatSample.java:[129,8] Avoid using `/**` for comments which aren't actually Javadoc.
Did you mean
/*
icu4j/samples/src/main/java/com/ibm/icu/samples/text/datetimepatterngenerator/DateTimePatternGeneratorSample.java:[69,8] Avoid using `/**` for comments which aren't actually Javadoc.
Did you mean
/*
icu4j/samples/src/main/java/com/ibm/icu/samples/text/datetimepatterngenerator/DateTimePatternGeneratorSample.java:[105,8] Avoid using `/**` for comments which aren't actually Javadoc.
Did you mean
/*
icu4j/samples/src/main/java/com/ibm/icu/samples/text/datetimepatterngenerator/DateTimePatternGeneratorSample.java:[143,8] Avoid using `/**` for comments which aren't actually Javadoc.
Did you mean
/*
icu4j/samples/src/main/java/com/ibm/icu/samples/text/datetimepatterngenerator/DateTimePatternGeneratorSample.java:[184,8] Avoid using `/**` for comments which aren't actually Javadoc.
Did you mean
/*
icu4j/samples/src/main/java/com/ibm/icu/samples/text/pluralformat/PluralFormatSample.java:[87,8] Avoid using `/**` for comments which aren't actually Javadoc.
Did you mean
/*
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/charsetdet/sbcs/StatisticsTool.java:[391,8] Avoid using `/**` for comments which aren't actually Javadoc.
Did you mean
/* Checkers */

[ICU_PRIORITY_1] ObjectToString (5) 🔗

File and line number Message
icu4j/main/collate/src/main/java/com/ibm/icu/text/RuleBasedCollator.java:[1945,73] ULocale.Type is final and does not override Object.toString, so converting it to a string will print its identity (e.g. `Type@4488aabb`) instead of useful information.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/normalizer/BasicTest.java:[1884,40] Normalizer.QuickCheckResult is final and does not override Object.toString, so converting it to a string will print its identity (e.g. `QuickCheckResult@4488aabb`) instead of useful information.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/normalizer/BasicTest.java:[1927,34] Normalizer.QuickCheckResult is final and does not override Object.toString, so converting it to a string will print its identity (e.g. `QuickCheckResult@4488aabb`) instead of useful information.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/LocaleDataTest.java:[160,34] LocaleData.MeasurementSystem is final and does not override Object.toString, so converting it to a string will print its identity (e.g. `MeasurementSystem@4488aabb`) instead of useful information.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/LocaleDataTest.java:[158,38] LocaleData.MeasurementSystem is final and does not override Object.toString, so converting it to a string will print its identity (e.g. `MeasurementSystem@4488aabb`) instead of useful information.

[ICU_PRIORITY_1] OperatorPrecedence [Style] (54) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/BaseLocale.java:[181,32] Use grouping parenthesis to make the operator precedence explicit
Did you mean
|| ((obj instanceof Key)
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/BaseLocale.java:[189,28] Use grouping parenthesis to make the operator precedence explicit
Did you mean
|| ((obj instanceof Key)
icu4j/main/core/src/main/java/com/ibm/icu/impl/Trie2.java:[892,35] Use grouping parenthesis to make the operator precedence explicit
Did you mean
return (doingCodePoints && (doLeadSurrogates || nextStart < limitCP))
icu4j/main/core/src/main/java/com/ibm/icu/util/BasicTimeZone.java:[263,60] Use grouping parenthesis to make the operator precedence explicit
Did you mean
|| (tr1.getTo().getDSTSavings() != 0 && tr2.getTo().getDSTSavings() == 0)
icu4j/main/core/src/main/java/com/ibm/icu/util/BasicTimeZone.java:[264,60] Use grouping parenthesis to make the operator precedence explicit
Did you mean
|| (tr1.getTo().getDSTSavings() == 0 && tr2.getTo().getDSTSavings() != 0)) {
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[557,25] Use grouping parenthesis to make the operator precedence explicit
Did you mean
if ((daylight && timeType.value == TimeType.STANDARD)
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[558,33] Use grouping parenthesis to make the operator precedence explicit
Did you mean
|| (!daylight && timeType.value == TimeType.DAYLIGHT)) {
icu4j/main/core/src/main/java/com/ibm/icu/impl/OlsonTimeZone.java:[914,40] Use grouping parenthesis to make the operator precedence explicit
Did you mean
|| ((finalZone != null
icu4j/main/core/src/main/java/com/ibm/icu/util/SimpleTimeZone.java:[857,28] Use grouping parenthesis to make the operator precedence explicit
Did you mean
|| ((nonExistingTimeOptVal & STD_DST_MASK) != LOCAL_DST
icu4j/main/core/src/main/java/com/ibm/icu/util/SimpleTimeZone.java:[864,28] Use grouping parenthesis to make the operator precedence explicit
Did you mean
|| ((duplicatedTimeOptVal & STD_DST_MASK) != LOCAL_STD
icu4j/main/core/src/main/java/com/ibm/icu/text/PluralRules.java:[1761,30] Use grouping parenthesis to make the operator precedence explicit
Did you mean
if (((integersOnly && (n - (long) n) != 0.0)
icu4j/main/core/src/main/java/com/ibm/icu/text/PluralRules.java:[1762,44] Use grouping parenthesis to make the operator precedence explicit
Did you mean
|| (operand == Operand.j && number.getPluralOperand(Operand.v) != 0))) {
icu4j/main/core/src/main/java/com/ibm/icu/text/PluralRules.java:[1794,36] Use grouping parenthesis to make the operator precedence explicit
Did you mean
|| ((operand == Operand.n
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/DecimalQuantity_DualStorageBCD.java:[161,30] Use grouping parenthesis to make the operator precedence explicit
Did you mean
bcdLong = (bcdLong & ~(0xfL << shift)) | ((long) value << shift);
icu4j/main/core/src/main/java/com/ibm/icu/text/SimpleDateFormat.java:[2807,56] Use grouping parenthesis to make the operator precedence explicit
Did you mean
if ((tztype == TimeType.STANDARD && offsets[1] != 0)
icu4j/main/core/src/main/java/com/ibm/icu/text/SimpleDateFormat.java:[2808,63] Use grouping parenthesis to make the operator precedence explicit
Did you mean
|| (tztype == TimeType.DAYLIGHT && offsets[1] == 0)) {
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[6555,24] Use grouping parenthesis to make the operator precedence explicit
Did you mean
return (((1 << getType(ch))
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/XCldrStub.java:[171,48] Use grouping parenthesis to make the operator precedence explicit
Did you mean
return it1.hasNext() || (it2 != null && it2.hasNext());
icu4j/main/core/src/main/java/com/ibm/icu/message2/MFParser.java:[135,61] Use grouping parenthesis to make the operator precedence explicit
Did you mean
if (cp == '\\' || cp == '{' || (cp == '|' | cp == '}')) {
icu4j/main/core/src/main/java/com/ibm/icu/text/ArabicShaping.java:[1364,32] Use grouping parenthesis to make the operator precedence explicit
Did you mean
} else if ((ch >= 0x0653 && ch <= 0x0655) || ch == 0x0670 || ch >= 0xFE70 && ch <= 0xFE7F) {
icu4j/main/core/src/main/java/com/ibm/icu/text/ArabicShaping.java:[1364,80] Use grouping parenthesis to make the operator precedence explicit
Did you mean
} else if (ch >= 0x0653 && ch <= 0x0655 || ch == 0x0670 || (ch >= 0xFE70 && ch <= 0xFE7F)) {
icu4j/main/core/src/main/java/com/ibm/icu/text/DateIntervalInfo.java:[990,32] Use grouping parenthesis to make the operator precedence explicit
Did you mean
if ((fieldWidth <= 2 && anotherFieldWidth > 2)
icu4j/main/core/src/main/java/com/ibm/icu/text/DateIntervalInfo.java:[991,38] Use grouping parenthesis to make the operator precedence explicit
Did you mean
|| (fieldWidth > 2 && anotherFieldWidth <= 2)) {
icu4j/main/core/src/main/java/com/ibm/icu/text/RuleBasedNumberFormat.java:[1761,43] Use grouping parenthesis to make the operator precedence explicit
Did you mean
if ((defaultRuleSet == null && currentName.equals("%spellout-numbering"))
icu4j/main/core/src/main/java/com/ibm/icu/text/RBBIRuleScanner.java:[735,66] Use grouping parenthesis to make the operator precedence explicit
Did you mean
if (ch == '\r' || ch == chNEL || ch == chLS || (ch == '\n' && fLastChar != '\r')) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/impl/number/DecimalQuantity_64BitBCD.java:[65,18] Use grouping parenthesis to make the operator precedence explicit
Did you mean
bcd = (bcd & ~(0xfL << shift)) | ((long) value << shift);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRoundTripTest.java:[228,55] Use grouping parenthesis to make the operator precedence explicit
Did you mean
|| (hasTwoDigitYear && d[1].getTime() < 0L)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/normalizer/NormalizerBuilder.java:[179,51] Use grouping parenthesis to make the operator precedence explicit
Did you mean
if (decompLen < 1 || (decompLen > 2 && !compat)) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/RBBITestMonkey.java:[1633,51] Use grouping parenthesis to make the operator precedence explicit
Did you mean
|| (breakPos > lastBreakPos && lastBreakPos > i)) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/RBBITestMonkey.java:[1659,51] Use grouping parenthesis to make the operator precedence explicit
Did you mean
|| (breakPos < lastBreakPos && lastBreakPos < i)) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/PunycodeReference.java:[105,27] Use grouping parenthesis to make the operator precedence explicit
Did you mean
return (char) ((bcp + (((flag == 0) && mybcp) ? 1 : 0)) << 5);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[2174,60] Use grouping parenthesis to make the operator precedence explicit
Did you mean
|| (tr1.getTo().getDSTSavings() != 0 && tr2.getTo().getDSTSavings() == 0)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[2175,60] Use grouping parenthesis to make the operator precedence explicit
Did you mean
|| (tr1.getTo().getDSTSavings() == 0 && tr2.getTo().getDSTSavings() != 0)) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[1945,34] Use grouping parenthesis to make the operator precedence explicit
Did you mean
if ((canonical != null && !canonical.equals(data[i][1]))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[1946,41] Use grouping parenthesis to make the operator precedence explicit
Did you mean
|| (canonical == null && data[i][1] != null)) {
icu4j/main/collate/src/main/java/com/ibm/icu/util/GlobalizationPreferences.java:[649,33] Use grouping parenthesis to make the operator precedence explicit
Did you mean
if ((dateStyle == DF_NONE && timeStyle == DF_NONE)
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetEncoderICU.java:[146,40] Use grouping parenthesis to make the operator precedence explicit
Did you mean
|| (c >= 0xF0000 && (c <= 0xFFFFD || (c >= 0x100000 && c <= 0x10FFFD))));
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/serializable/SerializableTestUtility.java:[540,28] Use grouping parenthesis to make the operator precedence explicit
Did you mean
|| (a != null
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ULocaleTest.java:[4070,29] Use grouping parenthesis to make the operator precedence explicit
Did you mean
if ((cmp1 < 0 && cmp2 <= 0) || cmp1 > 0 && cmp2 >= 0 || cmp1 == 0 && cmp2 != 0) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ULocaleTest.java:[4070,54] Use grouping parenthesis to make the operator precedence explicit
Did you mean
if (cmp1 < 0 && cmp2 <= 0 || (cmp1 > 0 && cmp2 >= 0) || cmp1 == 0 && cmp2 != 0) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ULocaleTest.java:[4070,80] Use grouping parenthesis to make the operator precedence explicit
Did you mean
if (cmp1 < 0 && cmp2 <= 0 || cmp1 > 0 && cmp2 >= 0 || (cmp1 == 0 && cmp2 != 0)) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarCalc.java:[253,26] Use grouping parenthesis to make the operator precedence explicit
Did you mean
if ((i > 0 && locales[i].getLanguage().equals(locales[i - 1].getLanguage()))
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarCalc.java:[255,32] Use grouping parenthesis to make the operator precedence explicit
Did you mean
|| (i < locales.length - 1
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarFrame.java:[182,26] Use grouping parenthesis to make the operator precedence explicit
Did you mean
if ((i > 0 && locales[i].getLanguage().equals(locales[i - 1].getLanguage()))
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarFrame.java:[184,32] Use grouping parenthesis to make the operator precedence explicit
Did you mean
|| (i < locales.length - 1
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarPanel.java:[326,46] Use grouping parenthesis to make the operator precedence explicit
Did you mean
if (date == 1 || (row == 0 && col == 0)) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/holiday/HolidayCalendarDemo.java:[184,26] Use grouping parenthesis to make the operator precedence explicit
Did you mean
if ((i > 0 && calendars[i].getCountry().equals(calendars[i - 1].getCountry()))
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/holiday/HolidayCalendarDemo.java:[186,32] Use grouping parenthesis to make the operator precedence explicit
Did you mean
|| (i < calendars.length - 1
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/holiday/HolidayCalendarDemo.java:[211,26] Use grouping parenthesis to make the operator precedence explicit
Did you mean
if ((i > 0 && locales[i].getLanguage().equals(locales[i - 1].getLanguage()))
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/holiday/HolidayCalendarDemo.java:[213,32] Use grouping parenthesis to make the operator precedence explicit
Did you mean
|| (i < locales.length - 1
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/DumbTextComponent.java:[734,29] Use grouping parenthesis to make the operator precedence explicit
Did you mean
if ((ch >= 0x000A && ch <= 0x000D) || ch == 0x2028 || ch == 0x2029) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/DumbTextComponent.java:[783,44] Use grouping parenthesis to make the operator precedence explicit
Did you mean
if (!(ch == ' ' || (ch >= 0x000A && ch <= 0x000D) || ch == 0x2028 || ch == 0x2029))
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/charsetdet/mbcs/BIG5Tool.java:[324,28] Use grouping parenthesis to make the operator precedence explicit
Did you mean
|| (sjis && secondByte >= 0x00fd)) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/ThaiCharacterClasses.java:[252,49] Use grouping parenthesis to make the operator precedence explicit
Did you mean
if (prevClass < 0 || (prevClass >= cCount | currClass < 0) || currClass >= cCount) {

[WARNING] OverrideThrowableToString (1) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/text/StringPrepParseException.java:[169,18] To return a custom message with a Throwable class, one should override getMessage() instead of toString().
Did you mean
public String getMessage() {

[WARNING] ProtectedMembersInFinalClass (8) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/impl/CaseMapImpl.java:[154,31] Make members of final classes package-private: s, index, limit, cpStart, cpLimit, dir
Did you mean
CharSequence s;
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[1849,23] Make members of final classes package-private: processResource
Did you mean
void processResource(String path, UResource.Key key, UResource.Value value) {
icu4j/main/core/src/main/java/com/ibm/icu/impl/UCharacterNameReader.java:[44,14] Make members of final classes package-private: UCharacterNameReader, read, authenticate
Did you mean
UCharacterNameReader(ByteBuffer bytes) throws IOException {
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationDataBuilder.java:[425,18] Make members of final classes package-private: getCE32FromOffsetCE32, addCE, addCE32, addConditionalCE32, getConditionalCE32, getConditionalCE32ForCE32, makeBuilderContextCE32, isBuilderContextCE32, encodeOneCEAsCE32, encodeOneCE, encodeExpansion, encodeExpansion32, copyFromBaseCE32, copyContractionsFromBaseCE32, getJamoCE32s, setDigitTags, setLeadSurrogates, buildMappings, clearContexts, buildContexts, buildContext, addContextTrie, buildFastLatinTable, getCEs, jamoCpFromIndex, isMutable, nfcImpl, base, baseSettings, trie, ce32s, ce64s, conditionalCE32s, contextChars, contexts, unsafeBackwardSet, modified, fastLatinEnabled, fastLatinBuilder, collIter
Did you mean
int getCE32FromOffsetCE32(boolean fromBase, int c, int ce32) {
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationDataBuilder.java:[1410,45] Make members of final classes package-private: builder, builderData, jamoCE32s, s, pos
Did you mean
final CollationDataBuilder builder;
icu4j/main/collate/src/main/java/com/ibm/icu/text/StringSearch.java:[1669,18] Make members of final classes package-private: Pattern
Did you mean
Pattern(String pattern) {
icu4j/main/charset/src/main/java/com/ibm/icu/charset/UConverterAliasDataReader.java:[133,14] Make members of final classes package-private: UConverterAliasDataReader, readToc
Did you mean
UConverterAliasDataReader(ByteBuffer bytes) throws IOException {
icu4j/main/charset/src/main/java/com/ibm/icu/charset/UConverterDataReader.java:[396,14] Make members of final classes package-private: UConverterDataReader, readStaticData, readMBCSHeader, readMBCSTable, readBaseTableName, readExtIndexes
Did you mean
UConverterDataReader(ByteBuffer bytes) throws IOException {

[ICU_PRIORITY_1] ReferenceEquality [FragileCode] (121) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/impl/FormattedStringBuilder.java:[298,17] Comparison using reference equality instead of value equality
Did you mean
if (this.equals(other)) {
icu4j/main/core/src/main/java/com/ibm/icu/impl/FormattedStringBuilder.java:[548,51] Comparison using reference equality instead of value equality
Did you mean
if (!Objects.equals(unwrapField(this.fields[zero + i]), unwrapField(fields[i]))) {' or 'if (!unwrapField(this.fields[zero + i]).equals(unwrapField(fields[i]))) {
icu4j/main/core/src/main/java/com/ibm/icu/impl/FormattedStringBuilder.java:[565,40] Comparison using reference equality instead of value equality
Did you mean
if (!Objects.equals(unwrapField(fieldAt(i)), unwrapField(other.fieldAt(i)))) {' or 'if (!unwrapField(fieldAt(i)).equals(unwrapField(other.fieldAt(i)))) {
icu4j/main/core/src/main/java/com/ibm/icu/impl/FormattedValueFieldPositionIteratorImpl.java:[93,44] Comparison using reference equality instead of value equality
Did you mean
if (!Objects.equals(fp1.getFieldAttribute(), fp2.getFieldAttribute())) {' or 'if (!fp1.getFieldAttribute().equals(fp2.getFieldAttribute())) {
icu4j/main/core/src/main/java/com/ibm/icu/impl/FormattedValueFieldPositionIteratorImpl.java:[132,51] Comparison using reference equality instead of value equality
Did you mean
} else if (!Objects.equals(fp1.getFieldAttribute(), fp2.getFieldAttribute())) {' or '} else if (!fp1.getFieldAttribute().equals(fp2.getFieldAttribute())) {
icu4j/main/core/src/main/java/com/ibm/icu/text/ConstrainedFieldPosition.java:[322,30] Comparison using reference equality instead of value equality
Did you mean
return Objects.equals(fField, field);' or 'return fField.equals(field);
icu4j/main/core/src/main/java/com/ibm/icu/text/ConstrainedFieldPosition.java:[325,30] Comparison using reference equality instead of value equality
Did you mean
return Objects.equals(fField, field) && Objects.equals(fValue, fieldValue);' or 'return fField.equals(field) && Objects.equals(fValue, fieldValue);
icu4j/main/core/src/main/java/com/ibm/icu/impl/FormattedValueStringBuilderImpl.java:[117,21] Comparison using reference equality instead of value equality
Did you mean
if (rawField.equals(NumberFormat.Field.FRACTION) && fp.getEndIndex() == 0) {
icu4j/main/core/src/main/java/com/ibm/icu/impl/FormattedValueStringBuilderImpl.java:[179,45] Comparison using reference equality instead of value equality
Did you mean
prevIsNumeric = Objects.equals(cfpos.getField(), numericField);' or 'prevIsNumeric = cfpos.getField().equals(numericField);
icu4j/main/core/src/main/java/com/ibm/icu/impl/FormattedValueStringBuilderImpl.java:[181,49] Comparison using reference equality instead of value equality
Did you mean
boolean prevIsInteger = Objects.equals(cfpos.getField(), NumberFormat.Field.INTEGER);' or 'boolean prevIsInteger = cfpos.getField().equals(NumberFormat.Field.INTEGER);
icu4j/main/core/src/main/java/com/ibm/icu/impl/FormattedValueStringBuilderImpl.java:[213,35] Comparison using reference equality instead of value equality
Did you mean
if (Objects.equals(ph.normalField, ListFormatter.Field.ELEMENT)) {' or 'if (ph.normalField.equals(ListFormatter.Field.ELEMENT)) {
icu4j/main/core/src/main/java/com/ibm/icu/impl/FormattedValueStringBuilderImpl.java:[265,42] Comparison using reference equality instead of value equality
Did you mean
} else if (Objects.equals(ph.normalField, ListFormatter.Field.ELEMENT)) {' or '} else if (ph.normalField.equals(ListFormatter.Field.ELEMENT)) {
icu4j/main/core/src/main/java/com/ibm/icu/impl/ICULocaleService.java:[556,16] Comparison using reference equality instead of value equality
Did you mean
if (!Objects.equals(loc, fallbackLocale)) {' or 'if (!loc.equals(fallbackLocale)) {
icu4j/main/core/src/main/java/com/ibm/icu/impl/ICULocaleService.java:[558,24] Comparison using reference equality instead of value equality
Did you mean
if (!Objects.equals(loc, fallbackLocale)) {' or 'if (!loc.equals(fallbackLocale)) {
icu4j/main/core/src/main/java/com/ibm/icu/util/BasicTimeZone.java:[177,17] Comparison using reference equality instead of value equality
Did you mean
if (this.equals(tz)) {
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[3559,29] Comparison using reference equality instead of value equality
Did you mean
if (!Objects.equals(validLoc, baseLoc)) {' or 'if (!validLoc.equals(baseLoc)) {
icu4j/main/core/src/main/java/com/ibm/icu/text/TimeZoneFormat.java:[1677,36] Comparison using reference equality instead of value equality
Did you mean
if (Objects.equals(pos.getFieldAttribute(), DateFormat.Field.TIME_ZONE)' or 'if (pos.getFieldAttribute().equals(DateFormat.Field.TIME_ZONE)
icu4j/main/core/src/main/java/com/ibm/icu/impl/OlsonTimeZone.java:[389,17] Comparison using reference equality instead of value equality
Did you mean
if (this.equals(other)) {
icu4j/main/core/src/main/java/com/ibm/icu/util/SimpleTimeZone.java:[1299,17] Comparison using reference equality instead of value equality
Did you mean
if (this.equals(othr)) {
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/CompactData.java:[148,26] Comparison using reference equality instead of value equality
Did you mean
if (USE_FALLBACK.equals(patternString)) {
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/AffixUtils.java:[398,58] Comparison using reference equality instead of value equality
Did you mean
if (typeOrCp < 0 && Objects.equals(getFieldForType(typeOrCp), NumberFormat.Field.CURRENCY)) {' or 'if (typeOrCp < 0 && getFieldForType(typeOrCp).equals(NumberFormat.Field.CURRENCY)) {
icu4j/main/core/src/main/java/com/ibm/icu/impl/RBBIDataWrapper.java:[163,17] Comparison using reference equality instead of value equality
Did you mean
if (Objects.equals(left, right)) {' or 'if (left.equals(right)) {
icu4j/main/core/src/main/java/com/ibm/icu/text/SimpleDateFormat.java:[1159,16] Comparison using reference equality instead of value equality
Did you mean
if (!Objects.equals(cal, calendar) && !cal.getType().equals(calendar.getType())) {' or 'if (!cal.equals(calendar) && !cal.getType().equals(calendar.getType())) {
icu4j/main/core/src/main/java/com/ibm/icu/text/SimpleDateFormat.java:[2160,20] Comparison using reference equality instead of value equality
Did you mean
} else if (Objects.equals(pos.getFieldAttribute(), PATTERN_INDEX_TO_DATE_FORMAT_ATTRIBUTE[outputCharIndex])) {' or '} else if (pos.getFieldAttribute().equals(PATTERN_INDEX_TO_DATE_FORMAT_ATTRIBUTE[outputCharIndex])) {
icu4j/main/core/src/main/java/com/ibm/icu/text/SimpleDateFormat.java:[2445,16] Comparison using reference equality instead of value equality
Did you mean
if (!Objects.equals(cal, calendar) && !cal.getType().equals(calendar.getType())) {' or 'if (!cal.equals(calendar) && !cal.getType().equals(calendar.getType())) {
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/ConstantAffixModifier.java:[92,25] Comparison using reference equality instead of value equality
Did you mean
&& Objects.equals(field, _other.field)' or '&& field.equals(_other.field)
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/PropertiesAffixPatternProvider.java:[131,26] Comparison using reference equality instead of value equality
Did you mean
return (!Objects.equals(negSuffix, posSuffix)' or 'return (!negSuffix.equals(posSuffix)
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/LongNameHandler.java:[221,27] Comparison using reference equality instead of value equality
Did you mean
if (!"neuter".equals(gender)) {
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/LongNameHandler.java:[247,32] Comparison using reference equality instead of value equality
Did you mean
if (!"nominative".equals(caseVariant)) {
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/SimpleModifier.java:[81,25] Comparison using reference equality instead of value equality
Did you mean
&& Objects.equals(field, _other.field)' or '&& field.equals(_other.field)
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/UnitsConverter.java:[77,78] Comparison using reference equality instead of value equality
Did you mean
assert convertibility != Convertibility.RECIPROCAL || Objects.equals(this.offset, BigDecimal.ZERO);' or 'assert convertibility != Convertibility.RECIPROCAL || this.offset.equals(BigDecimal.ZERO);
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/UnitsConverter.java:[171,26] Comparison using reference equality instead of value equality
Did you mean
assert Objects.equals(offset, BigDecimal.ZERO);' or 'assert offset.equals(BigDecimal.ZERO);
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/UnitsConverter.java:[214,26] Comparison using reference equality instead of value equality
Did you mean
assert Objects.equals(offset, BigDecimal.ZERO);' or 'assert offset.equals(BigDecimal.ZERO);
icu4j/main/core/src/main/java/com/ibm/icu/text/MeasureFormat.java:[422,26] Comparison using reference equality instead of value equality
Did you mean
if (!Objects.equals(fieldPosition, DontCareFieldPosition.INSTANCE)) {' or 'if (!fieldPosition.equals(DontCareFieldPosition.INSTANCE)) {
icu4j/main/core/src/main/java/com/ibm/icu/text/MeasureFormat.java:[671,39] Comparison using reference equality instead of value equality
Did you mean
&& Objects.equals(formatter1.unit, unit)' or '&& formatter1.unit.equals(unit)
icu4j/main/core/src/main/java/com/ibm/icu/text/MeasureFormat.java:[672,42] Comparison using reference equality instead of value equality
Did you mean
&& Objects.equals(formatter1.perUnit, perUnit)) {' or '&& formatter1.perUnit.equals(perUnit)) {
icu4j/main/core/src/main/java/com/ibm/icu/text/MeasureFormat.java:[677,43] Comparison using reference equality instead of value equality
Did you mean
&& Objects.equals(formatter2.unit, unit)' or '&& formatter2.unit.equals(unit)
icu4j/main/core/src/main/java/com/ibm/icu/text/MeasureFormat.java:[678,46] Comparison using reference equality instead of value equality
Did you mean
&& Objects.equals(formatter2.perUnit, perUnit)) {' or '&& formatter2.perUnit.equals(perUnit)) {
icu4j/main/core/src/main/java/com/ibm/icu/text/MeasureFormat.java:[683,47] Comparison using reference equality instead of value equality
Did you mean
&& Objects.equals(formatter3.unit, unit)' or '&& formatter3.unit.equals(unit)
icu4j/main/core/src/main/java/com/ibm/icu/text/MeasureFormat.java:[684,50] Comparison using reference equality instead of value equality
Did you mean
&& Objects.equals(formatter3.perUnit, perUnit)) {' or '&& formatter3.perUnit.equals(perUnit)) {
icu4j/main/core/src/main/java/com/ibm/icu/text/TimeUnitFormat.java:[212,19] Comparison using reference equality instead of value equality
Did you mean
if (Objects.equals(format, this.format)) {' or 'if (format.equals(this.format)) {
icu4j/main/core/src/main/java/com/ibm/icu/text/TimeUnitFormat.java:[564,25] Comparison using reference equality instead of value equality
Did you mean
if (timeUnit.equals(TimeUnit.SECOND)) {
icu4j/main/core/src/main/java/com/ibm/icu/text/TimeUnitFormat.java:[566,32] Comparison using reference equality instead of value equality
Did you mean
} else if (timeUnit.equals(TimeUnit.MINUTE)) {
icu4j/main/core/src/main/java/com/ibm/icu/text/TimeUnitFormat.java:[568,32] Comparison using reference equality instead of value equality
Did you mean
} else if (timeUnit.equals(TimeUnit.HOUR)) {
icu4j/main/core/src/main/java/com/ibm/icu/text/TimeUnitFormat.java:[570,32] Comparison using reference equality instead of value equality
Did you mean
} else if (timeUnit.equals(TimeUnit.WEEK)) {
icu4j/main/core/src/main/java/com/ibm/icu/text/TimeUnitFormat.java:[572,32] Comparison using reference equality instead of value equality
Did you mean
} else if (timeUnit.equals(TimeUnit.DAY)) {
icu4j/main/core/src/main/java/com/ibm/icu/text/TimeUnitFormat.java:[574,32] Comparison using reference equality instead of value equality
Did you mean
} else if (timeUnit.equals(TimeUnit.MONTH)) {
icu4j/main/core/src/main/java/com/ibm/icu/text/TimeUnitFormat.java:[576,32] Comparison using reference equality instead of value equality
Did you mean
} else if (timeUnit.equals(TimeUnit.YEAR)) {
icu4j/main/core/src/main/java/com/ibm/icu/text/NFSubstitution.java:[1226,77] Comparison using reference equality instead of value equality
Did you mean
if (description.equals(">>") || description.equals(">>>") || Objects.equals(ruleSet, this.ruleSet)) {' or 'if (description.equals(">>") || description.equals(">>>") || ruleSet.equals(this.ruleSet)) {
icu4j/main/core/src/main/java/com/ibm/icu/text/SpoofChecker.java:[1658,23] Comparison using reference equality instead of value equality
Did you mean
if (!Objects.equals(fSpoofData, otherSC.fSpoofData)' or 'if (!fSpoofData.equals(otherSC.fSpoofData)
icu4j/main/core/src/main/java/com/ibm/icu/text/SpoofChecker.java:[1671,29] Comparison using reference equality instead of value equality
Did you mean
if (!Objects.equals(fAllowedCharsSet, otherSC.fAllowedCharsSet)' or 'if (!fAllowedCharsSet.equals(otherSC.fAllowedCharsSet)
icu4j/main/core/src/main/java/com/ibm/icu/util/StringTrieBuilder.java:[358,24] Comparison using reference equality instead of value equality
Did you mean
return Objects.equals(next, o.next);' or 'return next.equals(o.next);
icu4j/main/core/src/main/java/com/ibm/icu/util/StringTrieBuilder.java:[400,43] Comparison using reference equality instead of value equality
Did you mean
if (length != o.length || !Objects.equals(next, o.next)) {' or 'if (length != o.length || !next.equals(o.next)) {
icu4j/main/core/src/main/java/com/ibm/icu/util/StringTrieBuilder.java:[666,83] Comparison using reference equality instead of value equality
Did you mean
if (units[i] != o.units[i] || values[i] != o.values[i] || !Objects.equals(equal[i], o.equal[i])) {' or 'if (units[i] != o.units[i] || values[i] != o.values[i] || !equal[i].equals(o.equal[i])) {
icu4j/main/core/src/main/java/com/ibm/icu/util/StringTrieBuilder.java:[788,46] Comparison using reference equality instead of value equality
Did you mean
return unit == o.unit && Objects.equals(lessThan, o.lessThan) && greaterOrEqual == o.greaterOrEqual;' or 'return unit == o.unit && lessThan.equals(o.lessThan) && greaterOrEqual == o.greaterOrEqual;
icu4j/main/core/src/main/java/com/ibm/icu/util/StringTrieBuilder.java:[788,78] Comparison using reference equality instead of value equality
Did you mean
return unit == o.unit && lessThan == o.lessThan && Objects.equals(greaterOrEqual, o.greaterOrEqual);' or 'return unit == o.unit && lessThan == o.lessThan && greaterOrEqual.equals(o.greaterOrEqual);
icu4j/main/core/src/main/java/com/ibm/icu/util/StringTrieBuilder.java:[845,46] Comparison using reference equality instead of value equality
Did you mean
return length == o.length && Objects.equals(next, o.next);' or 'return length == o.length && next.equals(o.next);
icu4j/main/core/src/main/java/com/ibm/icu/util/RuleBasedTimeZone.java:[250,17] Comparison using reference equality instead of value equality
Did you mean
if (this.equals(other)) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1068,28] Comparison using reference equality instead of value equality
Did you mean
if (!Objects.equals(a.getTimeZone(), b.getTimeZone()) && a.hashCode() == b.hashCode()) {' or 'if (!a.getTimeZone().equals(b.getTimeZone()) && a.hashCode() == b.hashCode()) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[2334,23] Comparison using reference equality instead of value equality
Did you mean
if ("unknown".equals(ALL[i])) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/OrdinalMonthTest.java:[60,25] Comparison using reference equality instead of value equality
Did you mean
if ("chinese".equals(calendar)) continue;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/OrdinalMonthTest.java:[61,25] Comparison using reference equality instead of value equality
Did you mean
if ("dangi".equals(calendar)) continue;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/OrdinalMonthTest.java:[62,25] Comparison using reference equality instead of value equality
Did you mean
if ("hebrew".equals(calendar)) continue;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/OrdinalMonthTest.java:[114,25] Comparison using reference equality instead of value equality
Did you mean
if ("coptic".equals(calendar)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/OrdinalMonthTest.java:[115,32] Comparison using reference equality instead of value equality
Did you mean
|| "ethiopic".equals(calendar)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/OrdinalMonthTest.java:[116,32] Comparison using reference equality instead of value equality
Did you mean
|| "ethiopic-amete-alem".equals(calendar)) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[184,42] Comparison using reference equality instead of value equality
Did you mean
if ((!Objects.equals(fmt.get2DigitYearStart(), start))) errln("get2DigitYearStart broken");' or 'if ((!fmt.get2DigitYearStart().equals(start))) errln("get2DigitYearStart broken");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[1294,31] Comparison using reference equality instead of value equality
Did you mean
if (!Objects.equals(locales[i], CHINESE_SIMPLIFIED)) {' or 'if (!locales[i].equals(CHINESE_SIMPLIFIED)) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[1306,31] Comparison using reference equality instead of value equality
Did you mean
if (!Objects.equals(locales[i], CHINESE_SIMPLIFIED)) {' or 'if (!locales[i].equals(CHINESE_SIMPLIFIED)) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormat.java:[178,46] Comparison using reference equality instead of value equality
Did you mean
if (dateMatch == 0 && Objects.equals(date[i], date[i - 1])) dateMatch = i;' or 'if (dateMatch == 0 && date[i].equals(date[i - 1])) dateMatch = i;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormat.java:[179,50] Comparison using reference equality instead of value equality
Did you mean
else if (dateMatch > 0 && !Objects.equals(date[i], date[i - 1])) {' or 'else if (dateMatch > 0 && !date[i].equals(date[i - 1])) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormatSymbols.java:[569,34] Comparison using reference equality instead of value equality
Did you mean
if (!Objects.equals(strings[i][j], strings1[i][j])) {' or 'if (!strings[i][j].equals(strings1[i][j])) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDecimalFormatSymbols.java:[218,38] Comparison using reference equality instead of value equality
Did you mean
if (!Objects.equals(fr.getExponentSeparator(), en.getExponentSeparator())) {' or 'if (!fr.getExponentSeparator().equals(en.getExponentSeparator())) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDecimalFormatSymbols.java:[224,47] Comparison using reference equality instead of value equality
Did you mean
if (!Objects.equals(fr.getExponentMultiplicationSign(), en.getExponentMultiplicationSign())) {' or 'if (!fr.getExponentMultiplicationSign().equals(en.getExponentMultiplicationSign())) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDecimalFormatSymbols.java:[235,20] Comparison using reference equality instead of value equality
Did you mean
if (!Objects.equals(en.getPatternForCurrencySpacing(i, true), fr.getPatternForCurrencySpacing(i, true))) {' or 'if (!en.getPatternForCurrencySpacing(i, true).equals(fr.getPatternForCurrencySpacing(i, true))) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDecimalFormatSymbols.java:[238,24] Comparison using reference equality instead of value equality
Did you mean
if (!Objects.equals(en.getPatternForCurrencySpacing(i, false), fr.getPatternForCurrencySpacing(i, false))) {' or 'if (!en.getPatternForCurrencySpacing(i, false).equals(fr.getPatternForCurrencySpacing(i, false))) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDecimalFormatSymbols.java:[247,16] Comparison using reference equality instead of value equality
Did you mean
if (!dash.equals(en.getPatternForCurrencySpacing(
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestNumberFormat.java:[182,50] Comparison using reference equality instead of value equality
Did you mean
if (stringMatch == 0 && Objects.equals(string[i], string[i - 1])) stringMatch = i;' or 'if (stringMatch == 0 && string[i].equals(string[i - 1])) stringMatch = i;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestNumberFormat.java:[183,54] Comparison using reference equality instead of value equality
Did you mean
else if (stringMatch > 0 && !Objects.equals(string[i], string[i - 1])) {' or 'else if (stringMatch > 0 && !string[i].equals(string[i - 1])) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/PluralFormatUnitTest.java:[95,56] Comparison using reference equality instead of value equality
Did you mean
assertTrue("different de_fee objects", !de_fee_1.equals(de_fee_2));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterTest.java:[928,47] Comparison using reference equality instead of value equality
Did you mean
if (!Objects.equals(UCharacter.UnicodeBlock.of(0x0041), UCharacter.UnicodeBlock.BASIC_LATIN)' or 'if (!UCharacter.UnicodeBlock.of(0x0041).equals(UCharacter.UnicodeBlock.BASIC_LATIN)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterTest.java:[1794,20] Comparison using reference equality instead of value equality
Did you mean
if (!Objects.equals(age, VersionInfo.getInstance(' or 'if (!age.equals(VersionInfo.getInstance(
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterTest.java:[3202,20] Comparison using reference equality instead of value equality
Did you mean
if (!Objects.equals(UCharacter.UnicodeBlock.INVALID_CODE, UCharacter.UnicodeBlock.getInstance(invalid_test[i]))) {' or 'if (!UCharacter.UnicodeBlock.INVALID_CODE.equals(UCharacter.UnicodeBlock.getInstance(invalid_test[i]))) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterTest.java:[3220,16] Comparison using reference equality instead of value equality
Did you mean
if (!Objects.equals(UCharacter.UnicodeBlock.INVALID_CODE, UCharacter.UnicodeBlock.of(UTF16.CODEPOINT_MAX_VALUE + 1))) {' or 'if (!UCharacter.UnicodeBlock.INVALID_CODE.equals(UCharacter.UnicodeBlock.of(UTF16.CODEPOINT_MAX_VALUE + 1))) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[2849,30] Comparison using reference equality instead of value equality
Did you mean
if (NOT.equals(expStrings[i])) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/normalizer/ConformanceTest.java:[281,21] Comparison using reference equality instead of value equality
Did you mean
if (!Objects.equals(field[0], field[2])) {' or 'if (!field[0].equals(field[2])) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/normalizer/IntStringHashtable.java:[26,18] Comparison using reference equality instead of value equality
Did you mean
if (Objects.equals(value, defaultValue)) {' or 'if (value.equals(defaultValue)) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRegressionTest.java:[61,15] Comparison using reference equality instead of value equality
Did you mean
if (Objects.equals(z1, z2)) errln("Fail: TimeZone should return clones");' or 'if (z1.equals(z2)) errln("Fail: TimeZone should return clones");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[546,24] Comparison using reference equality instead of value equality
Did you mean
if (Objects.equals(defaultzone, zone)) {' or 'if (defaultzone.equals(zone)) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[562,30] Comparison using reference equality instead of value equality
Did you mean
if (Objects.equals(newICUDefaultZone, anotherZone)) {' or 'if (newICUDefaultZone.equals(anotherZone)) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[2293,31] Comparison using reference equality instead of value equality
Did you mean
if (Objects.equals(thawedZones[i], copy) || !thawedZones[i].equals(copy)) {' or 'if (thawedZones[i].equals(copy) || !thawedZones[i].equals(copy)) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[2480,31] Comparison using reference equality instead of value equality
Did you mean
if (!Objects.equals(frozenZones[i], copy)) {' or 'if (!frozenZones[i].equals(copy)) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/LocaleMatcherTest.java:[151,60] Comparison using reference equality instead of value equality
Did you mean
assertTrue("exactly desired en-GB object", udesired.equals(result.getDesiredULocale()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/LocaleMatcherTest.java:[166,59] Comparison using reference equality instead of value equality
Did you mean
assertTrue("exactly desired en-US object", desired.equals(result.getDesiredLocale()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/VersionInfoTest.java:[354,34] Comparison using reference equality instead of value equality
Did you mean
if (!Objects.equals(results[0][j], results[i][j])) {' or 'if (!results[0][j].equals(results[i][j])) {
icu4j/main/collate/src/main/java/com/ibm/icu/text/CollationKey.java:[290,17] Comparison using reference equality instead of value equality
Did you mean
if (this.equals(target)) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[3765,27] Comparison using reference equality instead of value equality
Did you mean
if (!(Objects.equals(expected, Null))) errln("FAIL: Expected " + expected);' or 'if (!(expected.equals(Null))) errln("FAIL: Expected " + expected);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[6113,20] Comparison using reference equality instead of value equality
Did you mean
if (Objects.equals(got, exp) || (got != null && got.equals(exp))) {' or 'if (got.equals(exp) || (got != null && got.equals(exp))) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[6497,26] Comparison using reference equality instead of value equality
Did you mean
if (!Objects.equals(field, DATEFORMAT_FIELDS[i])) {' or 'if (!field.equals(DATEFORMAT_FIELDS[i])) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[6531,23] Comparison using reference equality instead of value equality
Did you mean
if (!Objects.equals(cfield, ChineseDateFormat.Field.IS_LEAP_MONTH)) {' or 'if (!cfield.equals(ChineseDateFormat.Field.IS_LEAP_MONTH)) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[7103,22] Comparison using reference equality instead of value equality
Did you mean
if ("".equals(field)) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[7106,20] Comparison using reference equality instead of value equality
Did you mean
} else if ("mixed".equals(field)) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[7112,29] Comparison using reference equality instead of value equality
Did you mean
} else if ("Mo".equals(field)) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/IntlTestDecimalFormatAPIC.java:[538,33] Comparison using reference equality instead of value equality
Did you mean
&& Objects.equals(attribute, fc.attribute)' or '&& attribute.equals(fc.attribute)
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/MeasureUnitGeneratorTest.java:[618,35] Comparison using reference equality instead of value equality
Did you mean
if ("currency".equals(entry.getKey())) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/MeasureUnitGeneratorTest.java:[665,29] Comparison using reference equality instead of value equality
Did you mean
if (Objects.equals(unit, NoUnit.BASE)) {' or 'if (unit.equals(NoUnit.BASE)) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/MeasureUnitTest.java:[1773,31] Comparison using reference equality instead of value equality
Did you mean
if ("currency".equals(unit.getType())) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/MeasureUnitTest.java:[1779,21] Comparison using reference equality instead of value equality
Did you mean
if (unit.equals(MeasureUnit.GENERIC_TEMPERATURE)) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/MeasureUnitTest.java:[1858,56] Comparison using reference equality instead of value equality
Did you mean
assertTrue("power inequality", !Objects.equals(quarticKilometer, overQuarticKilometer1));' or 'assertTrue("power inequality", !quarticKilometer.equals(overQuarticKilometer1));
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/serializable/FormatHandler.java:[1622,41] Comparison using reference equality instead of value equality
Did you mean
return !Objects.equals(mfa.format(arguments), mfb.format(arguments));' or 'return !mfa.format(arguments).equals(mfb.format(arguments));
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/serializable/FormatHandler.java:[2082,40] Comparison using reference equality instead of value equality
Did you mean
return !Objects.equals(sfa.format(argument), sfb.format(argument));' or 'return !sfa.format(argument).equals(sfb.format(argument));
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[2593,40] Comparison using reference equality instead of value equality
Did you mean
if (Objects.equals(testpat, pat)) {' or 'if (testpat.equals(pat)) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberRegressionTests.java:[1418,36] Comparison using reference equality instead of value equality
Did you mean
if (Objects.equals(VersionInfo.ICU_VERSION, VersionInfo.getInstance(2, 2))) {' or 'if (VersionInfo.ICU_VERSION.equals(VersionInfo.getInstance(2, 2))) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberRegressionTests.java:[1448,37] Comparison using reference equality instead of value equality
Did you mean
if (!Objects.equals(df.getCurrency(), Currency.getInstance("XXX")) && j == 1) {' or 'if (!df.getCurrency().equals(Currency.getInstance("XXX")) && j == 1) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/PluralRulesTest.java:[951,36] Comparison using reference equality instead of value equality
Did you mean
if (!Objects.equals(PluralRules.DEFAULT, PluralRules.parseDescription(""))) {' or 'if (!PluralRules.DEFAULT.equals(PluralRules.parseDescription(""))) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/PluralRulesTest.java:[1077,38] Comparison using reference equality instead of value equality
Did you mean
+ (Objects.equals(locale, ULocale.ROOT) ? "root" : locale.toString())' or '+ (locale.equals(ULocale.ROOT) ? "root" : locale.toString())
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/PluralRulesTest.java:[1150,38] Comparison using reference equality instead of value equality
Did you mean
+ (Objects.equals(locale, ULocale.ROOT) ? "root" : locale.toString())' or '+ (locale.equals(ULocale.ROOT) ? "root" : locale.toString())
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[2119,45] Comparison using reference equality instead of value equality
Did you mean
assertTrue("frozen!=thawed", !pattern.equals(thawed));
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/normalizer/BasicTest.java:[2470,22] Comparison using reference equality instead of value equality
Did you mean
isNFD = Objects.equals(s, d);' or 'isNFD = s.equals(d);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/number/NumberFormatterApiTest.java:[1791,33] Comparison using reference equality instead of value equality
Did you mean
Objects.equals(MeasureUnit.FOOT, formattedNum.getOutputUnit()));' or 'MeasureUnit.FOOT.equals(formattedNum.getOutputUnit()));
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/CurrencyTest.java:[469,39] Comparison using reference equality instead of value equality
Did you mean
if (!Objects.equals(info_fallback.getULocale(), ULocale.ROOT)) {' or 'if (!info_fallback.getULocale().equals(ULocale.ROOT)) {

[WARNING] ReturnAtTheEndOfVoidFunction (27) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[450,11] `return;` is unnecessary at the end of void methods and constructors.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[470,11] `return;` is unnecessary at the end of void methods and constructors.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[498,11] `return;` is unnecessary at the end of void methods and constructors.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[519,11] `return;` is unnecessary at the end of void methods and constructors.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[542,11] `return;` is unnecessary at the end of void methods and constructors.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[754,11] `return;` is unnecessary at the end of void methods and constructors.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[774,11] `return;` is unnecessary at the end of void methods and constructors.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[853,11] `return;` is unnecessary at the end of void methods and constructors.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[933,11] `return;` is unnecessary at the end of void methods and constructors.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[940,12] `return;` is unnecessary at the end of void methods and constructors.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/math/MathContext.java:[334,11] `return;` is unnecessary at the end of void methods and constructors.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/math/MathContext.java:[352,11] `return;` is unnecessary at the end of void methods and constructors.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/math/MathContext.java:[372,11] `return;` is unnecessary at the end of void methods and constructors.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/math/MathContext.java:[394,11] `return;` is unnecessary at the end of void methods and constructors.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/number/NumberSkeletonImpl.java:[1292,28] `return;` is unnecessary at the end of void methods and constructors.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/text/RBBIRuleScanner.java:[632,9] `return;` is unnecessary at the end of void methods and constructors.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/text/RuleBasedBreakIterator.java:[1345,13] `return;` is unnecessary at the end of void methods and constructors.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/text/RuleBasedBreakIterator.java:[1380,13] `return;` is unnecessary at the end of void methods and constructors.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/text/SpoofChecker.java:[2066,20] `return;` is unnecessary at the end of void methods and constructors.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[166,16] `return;` is unnecessary at the end of void methods and constructors.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[16627,17] `return;` is unnecessary at the end of void methods and constructors.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[16721,17] `return;` is unnecessary at the end of void methods and constructors.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/LocaleDistanceTest.java:[177,20] `return;` is unnecessary at the end of void methods and constructors.
Did you mean to remove this line?
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/UCAConformanceTest.java:[78,16] `return;` is unnecessary at the end of void methods and constructors.
Did you mean to remove this line?
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestConversion.java:[538,17] `return;` is unnecessary at the end of void methods and constructors.
Did you mean to remove this line?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberRegressionTests.java:[72,16] `return;` is unnecessary at the end of void methods and constructors.
Did you mean to remove this line?
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/charsetdet/sbcs/Checker.java:[128,16] `return;` is unnecessary at the end of void methods and constructors.
Did you mean to remove this line?

[ERROR] ReturnValueIgnored (22) 🔗

File and line number Message
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[77,18] Return value of 'toString' must be used
Did you mean 'var unused = c.toString();' or to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[2440,28] Return value of 'equals' must be used
Did you mean 'verify(x.equals(y));' or 'var unused = x.equals(y);' or to remove this line?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[4663,18] Return value of 'equals' must be used
Did you mean 'verify(sym.equals(null));' or 'var unused = sym.equals(null);' or to remove this line?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[5744,53] Return value of 'toString' must be used
Did you mean 'var unused = new DataDrivenNumberFormatTestData().toString();' or to remove this line?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/serializable/SerializableChecker.java:[97,57] Return value of 'getDeclaredField' must be used
Did you mean
/* uid= */
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/CurrencyTest.java:[49,36] Return value of 'hashCode' must be used
Did you mean
/*int hash = */
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[57,35] Return value of 'digit' must be used
Did you mean 'var unused = Character.digit(ch, 10);' or to remove this line?
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[85,45] Return value of 'getNumericValue' must be used
Did you mean 'var unused = Character.getNumericValue(ch);' or to remove this line?
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[113,37] Return value of 'getType' must be used
Did you mean 'var unused = Character.getType(ch);' or to remove this line?
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[141,39] Return value of 'isDefined' must be used
Did you mean 'verify(Character.isDefined(ch));' or 'var unused = Character.isDefined(ch);' or to remove this line?
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[169,37] Return value of 'isDigit' must be used
Did you mean 'verify(Character.isDigit(ch));' or 'var unused = Character.isDigit(ch);' or to remove this line?
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[197,51] Return value of 'isIdentifierIgnorable' must be used
Did you mean 'verify(Character.isIdentifierIgnorable(ch));' or 'var unused = Character.isIdentifierIgnorable(ch);' or to remove this line?
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[225,42] Return value of 'isISOControl' must be used
Did you mean 'verify(Character.isISOControl(ch));' or 'var unused = Character.isISOControl(ch);' or to remove this line?
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[253,38] Return value of 'isLetter' must be used
Did you mean 'verify(Character.isLetter(ch));' or 'var unused = Character.isLetter(ch);' or to remove this line?
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[281,45] Return value of 'isLetterOrDigit' must be used
Did you mean 'verify(Character.isLetterOrDigit(ch));' or 'var unused = Character.isLetterOrDigit(ch);' or to remove this line?
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[309,41] Return value of 'isLowerCase' must be used
Did you mean 'verify(Character.isLowerCase(ch));' or 'var unused = Character.isLowerCase(ch);' or to remove this line?
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[337,41] Return value of 'isSpaceChar' must be used
Did you mean 'verify(Character.isSpaceChar(ch));' or 'var unused = Character.isSpaceChar(ch);' or to remove this line?
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[365,41] Return value of 'isTitleCase' must be used
Did you mean 'verify(Character.isTitleCase(ch));' or 'var unused = Character.isTitleCase(ch);' or to remove this line?
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[393,53] Return value of 'isUnicodeIdentifierPart' must be used
Did you mean 'verify(Character.isUnicodeIdentifierPart(ch));' or 'var unused = Character.isUnicodeIdentifierPart(ch);' or to remove this line?
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[421,54] Return value of 'isUnicodeIdentifierStart' must be used
Did you mean 'verify(Character.isUnicodeIdentifierStart(ch));' or 'var unused = Character.isUnicodeIdentifierStart(ch);' or to remove this line?
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[449,41] Return value of 'isUpperCase' must be used
Did you mean 'verify(Character.isUpperCase(ch));' or 'var unused = Character.isUpperCase(ch);' or to remove this line?
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/UCharacterPerf.java:[477,42] Return value of 'isWhitespace' must be used
Did you mean 'verify(Character.isWhitespace(ch));' or 'var unused = Character.isWhitespace(ch);' or to remove this line?

[WARNING] SameNameButDifferent (29) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7797,28] The name `Element` refers to [com.ibm.icu.util.RangeValueIterator.Element, com.ibm.icu.util.ValueIterator.Element] within this file. It may be confusing to have the same name refer to multiple types. Consider qualifying them for clarity.
Did you mean
public boolean next(RangeValueIterator.Element element) {
icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java:[7877,28] The name `Element` refers to [com.ibm.icu.util.RangeValueIterator.Element, com.ibm.icu.util.ValueIterator.Element] within this file. It may be confusing to have the same name refer to multiple types. Consider qualifying them for clarity.
Did you mean
public boolean next(RangeValueIterator.Element element) {
icu4j/main/core/src/main/java/com/ibm/icu/impl/UCharacterProperty.java:[137,29] The name `IsAcceptable` refers to [com.ibm.icu.impl.UCharacterProperty.LayoutProps.IsAcceptable, com.ibm.icu.impl.UCharacterProperty.IsAcceptable] within this file. It may be confusing to have the same name refer to multiple types. Consider qualifying them for clarity.
Did you mean
private static final LayoutProps.IsAcceptable IS_ACCEPTABLE = new LayoutProps.IsAcceptable();
icu4j/main/core/src/main/java/com/ibm/icu/impl/UCharacterProperty.java:[137,62] The name `IsAcceptable` refers to [com.ibm.icu.impl.UCharacterProperty.LayoutProps.IsAcceptable, com.ibm.icu.impl.UCharacterProperty.IsAcceptable] within this file. It may be confusing to have the same name refer to multiple types. Consider qualifying them for clarity.
Did you mean
private static final LayoutProps.IsAcceptable IS_ACCEPTABLE = new LayoutProps.IsAcceptable();
icu4j/main/core/src/main/java/com/ibm/icu/impl/UCharacterProperty.java:[1624,75] The name `IsAcceptable` refers to [com.ibm.icu.impl.UCharacterProperty.LayoutProps.IsAcceptable, com.ibm.icu.impl.UCharacterProperty.IsAcceptable] within this file. It may be confusing to have the same name refer to multiple types. Consider qualifying them for clarity.
Did you mean
private static final LayoutProps.IsAcceptable IS_ACCEPTABLE = new LayoutProps.IsAcceptable();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterSurrogateTest.java:[23,5] The name `Test` refers to [org.junit.Test, Test, Test] within this file. It may be confusing to have the same name refer to multiple types. Consider qualifying them for clarity.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterSurrogateTest.java:[47,5] The name `Test` refers to [org.junit.Test, Test, Test] within this file. It may be confusing to have the same name refer to multiple types. Consider qualifying them for clarity.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterSurrogateTest.java:[55,5] The name `Test` refers to [org.junit.Test, Test, Test] within this file. It may be confusing to have the same name refer to multiple types. Consider qualifying them for clarity.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterSurrogateTest.java:[75,5] The name `Test` refers to [org.junit.Test, Test, Test] within this file. It may be confusing to have the same name refer to multiple types. Consider qualifying them for clarity.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterSurrogateTest.java:[104,5] The name `Test` refers to [org.junit.Test, Test, Test] within this file. It may be confusing to have the same name refer to multiple types. Consider qualifying them for clarity.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterSurrogateTest.java:[136,5] The name `Test` refers to [org.junit.Test, Test, Test] within this file. It may be confusing to have the same name refer to multiple types. Consider qualifying them for clarity.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterSurrogateTest.java:[158,5] The name `Test` refers to [org.junit.Test, Test, Test] within this file. It may be confusing to have the same name refer to multiple types. Consider qualifying them for clarity.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterSurrogateTest.java:[170,5] The name `Test` refers to [org.junit.Test, Test, Test] within this file. It may be confusing to have the same name refer to multiple types. Consider qualifying them for clarity.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterSurrogateTest.java:[183,5] The name `Test` refers to [org.junit.Test, Test, Test] within this file. It may be confusing to have the same name refer to multiple types. Consider qualifying them for clarity.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterSurrogateTest.java:[196,5] The name `Test` refers to [org.junit.Test, Test, Test] within this file. It may be confusing to have the same name refer to multiple types. Consider qualifying them for clarity.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterSurrogateTest.java:[224,5] The name `Test` refers to [org.junit.Test, Test, Test] within this file. It may be confusing to have the same name refer to multiple types. Consider qualifying them for clarity.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterSurrogateTest.java:[232,5] The name `Test` refers to [org.junit.Test, Test, Test] within this file. It may be confusing to have the same name refer to multiple types. Consider qualifying them for clarity.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterSurrogateTest.java:[262,5] The name `Test` refers to [org.junit.Test, Test, Test] within this file. It may be confusing to have the same name refer to multiple types. Consider qualifying them for clarity.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterSurrogateTest.java:[306,5] The name `Test` refers to [org.junit.Test, Test, Test] within this file. It may be confusing to have the same name refer to multiple types. Consider qualifying them for clarity.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterSurrogateTest.java:[324,5] The name `Test` refers to [org.junit.Test, Test, Test] within this file. It may be confusing to have the same name refer to multiple types. Consider qualifying them for clarity.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterSurrogateTest.java:[380,5] The name `Test` refers to [org.junit.Test, Test, Test] within this file. It may be confusing to have the same name refer to multiple types. Consider qualifying them for clarity.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterSurrogateTest.java:[358,8] The name `Test` refers to [org.junit.Test, Test, Test] within this file. It may be confusing to have the same name refer to multiple types. Consider qualifying them for clarity.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterSurrogateTest.java:[358,24] The name `Test` refers to [org.junit.Test, Test, Test] within this file. It may be confusing to have the same name refer to multiple types. Consider qualifying them for clarity.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterSurrogateTest.java:[492,8] The name `Test` refers to [org.junit.Test, Test, Test] within this file. It may be confusing to have the same name refer to multiple types. Consider qualifying them for clarity.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterSurrogateTest.java:[492,24] The name `Test` refers to [org.junit.Test, Test, Test] within this file. It may be confusing to have the same name refer to multiple types. Consider qualifying them for clarity.
icu4j/main/collate/src/main/java/com/ibm/icu/text/CollatorServiceShim.java:[62,27] The name `CollatorFactory` refers to [com.ibm.icu.text.Collator.CollatorFactory, CollatorFactory] within this file. It may be confusing to have the same name refer to multiple types. Consider qualifying them for clarity.
Did you mean
Object registerFactory(Collator.CollatorFactory f) {
icu4j/main/collate/src/main/java/com/ibm/icu/text/CollatorServiceShim.java:[64,12] The name `CollatorFactory` refers to [com.ibm.icu.text.Collator.CollatorFactory, CollatorFactory] within this file. It may be confusing to have the same name refer to multiple types. Consider qualifying them for clarity.
Did you mean
Object registerFactory(Collator.CollatorFactory f) {
icu4j/main/collate/src/main/java/com/ibm/icu/text/CollatorServiceShim.java:[66,21] The name `CollatorFactory` refers to [com.ibm.icu.text.Collator.CollatorFactory, CollatorFactory] within this file. It may be confusing to have the same name refer to multiple types. Consider qualifying them for clarity.
Did you mean
Object registerFactory(Collator.CollatorFactory f) {
icu4j/main/collate/src/main/java/com/ibm/icu/text/CollatorServiceShim.java:[147,37] The name `CollatorFactory` refers to [com.ibm.icu.text.Collator.CollatorFactory, CollatorFactory] within this file. It may be confusing to have the same name refer to multiple types. Consider qualifying them for clarity.
Did you mean
Object registerFactory(Collator.CollatorFactory f) {

[ERROR] SelfComparison (1) 🔗

File and line number Message
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2225,25] An object is compared to itself

[ERROR] SelfEquals (14) 🔗

File and line number Message
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[192,32] Testing an object for equality with itself will always be true.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/shaping/ArabicShapingRegTest.java:[62,23] Testing an object for equality with itself will always be true.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/CompactArrayTest.java:[38,42] Testing an object for equality with itself will always be true.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/CompactArrayTest.java:[103,42] Testing an object for equality with itself will always be true.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[4711,21] Testing an object for equality with itself will always be true.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[4366,22] Testing an object for equality with itself will always be true.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/RbnfTest.java:[119,24] Testing an object for equality with itself will always be true.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/RbnfTest.java:[136,24] Testing an object for equality with itself will always be true.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/RbnfTest.java:[1508,25] Testing an object for equality with itself will always be true.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/RbnfTest.java:[1514,25] Testing an object for equality with itself will always be true.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/RbnfTest.java:[1520,25] Testing an object for equality with itself will always be true.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/RbnfTest.java:[1526,25] Testing an object for equality with itself will always be true.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestStringPrep.java:[328,24] Testing an object for equality with itself will always be true.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/CurrencyTest.java:[61,23] Testing an object for equality with itself will always be true.

[ICU_PRIORITY_2] ShortCircuitBoolean [FragileCode] (30) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[623,32] Prefer the short-circuiting boolean operators && and || to & and |.
Did you mean
if ((elen == 0) || (elen > 9)) bad(inchars);
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[730,35] Prefer the short-circuiting boolean operators && and || to & and |.
Did you mean
if ((mag < MinExp) || (mag > MaxExp)) bad(inchars);
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[1151,55] Prefer the short-circuiting boolean operators && and || to & and |.
Did you mean
} else if ((usellen < userlen) || (lhs.ind == iszero)) {
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[1272,34] Prefer the short-circuiting boolean operators && and || to & and |.
Did you mean
if ((this.ind == rhs.ind) && (this.exp == rhs.exp)) {
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[1281,43] Prefer the short-circuiting boolean operators && and || to & and |.
Did you mean
if ((thislength <= set.digits) || (set.digits == 0)) {
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[1935,24] Prefer the short-circuiting boolean operators && and || to & and |.
Did you mean
if ((num > 127) || (num < (-128)))
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[1995,16] Prefer the short-circuiting boolean operators && and || to & and |.
Did you mean
if (((this.mant.length == rhs.mant.length) && (this.exp == rhs.exp)) && (this.form == rhs.form)) {
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[1994,51] Prefer the short-circuiting boolean operators && and || to & and |.
Did you mean
if (((this.mant.length == rhs.mant.length) && (this.exp == rhs.exp))
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[2188,28] Prefer the short-circuiting boolean operators && and || to & and |.
Did you mean
if ((before < (-1)) || (before == 0)) badarg("format", 1, java.lang.String.valueOf(before));
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[2190,30] Prefer the short-circuiting boolean operators && and || to & and |.
Did you mean
if ((explaces < (-1)) || (explaces == 0))
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[2731,26] Prefer the short-circuiting boolean operators && and || to & and |.
Did you mean
if ((num > 32767) || (num < (-32768)))
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[2783,27] Prefer the short-circuiting boolean operators && and || to & and |.
Did you mean
if ((exp >= 0) && (form == com.ibm.icu.math.MathContext.PLAIN))
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[3098,22] Prefer the short-circuiting boolean operators && and || to & and |.
Did you mean
if ((i < min) || (i > max))
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[3284,32] Prefer the short-circuiting boolean operators && and || to & and |.
Did you mean
if ((have != 0) || (thisdigit != 0)) {
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[3306,26] Prefer the short-circuiting boolean operators && and || to & and |.
Did you mean
if ((code == 'I') || (code == 'R')) {
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[3333,54] Prefer the short-circuiting boolean operators && and || to & and |.
Did you mean
if (!((res.exp < lhs.exp) && (res.exp < rhs.exp))) break;
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[3794,39] Prefer the short-circuiting boolean operators && and || to & and |.
Did you mean
if ((mag < MinExp) || (mag > MaxExp)) {
icu4j/main/core/src/main/java/com/ibm/icu/lang/UScript.java:[1658,46] Prefer the short-circuiting boolean operators && and || to & and |.
Did you mean
if (codepoint >= UCharacter.MIN_VALUE && codepoint <= UCharacter.MAX_VALUE) {
icu4j/main/core/src/main/java/com/ibm/icu/message2/MFParser.java:[135,61] Prefer the short-circuiting boolean operators && and || to & and |.
Did you mean
if (cp == '\\' || cp == '{' || cp == '|' || cp == '}') {
icu4j/main/core/src/main/java/com/ibm/icu/text/ArabicShaping.java:[1698,23] Prefer the short-circuiting boolean operators && and || to & and |.
Did you mean
if (!isLogical && !spacesRelativeToTextBeginEnd) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3411,24] Prefer the short-circuiting boolean operators && and || to & and |.
Did you mean
flag = flag && (e.getMessage()).equals("Negative scale: -8");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5320,32] Prefer the short-circuiting boolean operators && and || to & and |.
Did you mean
flag && (x.pow(new com.ibm.icu.math.BigDecimal(n), mcdef).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5335,32] Prefer the short-circuiting boolean operators && and || to & and |.
Did you mean
flag && (x.pow(new com.ibm.icu.math.BigDecimal(n), mcdef).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5339,32] Prefer the short-circuiting boolean operators && and || to & and |.
Did you mean
flag && (x.pow(new com.ibm.icu.math.BigDecimal(-n), mcdef).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/MessagePatternUtilTest.java:[296,22] Prefer the short-circuiting boolean operators && and || to & and |.
Did you mean
return ok && msg.matches(v.getMessage());
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationTest.java:[1764,58] Prefer the short-circuiting boolean operators && and || to & and |.
Did you mean
if (getMergedCollationKey(prevString, outPrevKey) || getMergedCollationKey(s, outKey)) {
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetSCSU.java:[725,20] Prefer the short-circuiting boolean operators && and || to & and |.
Did you mean
return (a && UConverterConstants.UNSIGNED_INT_MASK)
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/docs/CodeMangler.java:[328,29] Prefer the short-circuiting boolean operators && and || to & and |.
Did you mean
if (!tripped && trip) {
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/docs/CodeMangler.java:[341,37] Prefer the short-circuiting boolean operators && and || to & and |.
Did you mean
ret.emit = this.emit && trip;
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/ThaiCharacterClasses.java:[252,49] Prefer the short-circuiting boolean operators && and || to & and |.
Did you mean
if (prevClass < 0 || prevClass >= cCount || currClass < 0 || currClass >= cCount) {

[ICU_PRIORITY_2] StaticAssignmentInConstructor (1) 🔗

File and line number Message
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/normalizer/UnicodeNormalizer.java:[29,31] This assignment is to a static field. Mutating static state from a constructor is highly error-prone.

[WARNING] StaticAssignmentOfThrowable (1) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/text/SpoofChecker.java:[1962,39] Saving instances of Throwable in static fields is discouraged, prefer to create them on-demand when an exception is thrown

[ICU_PRIORITY_2] StringCaseLocaleUsage (45) 🔗

File and line number Message
icu4j/main/framework/src/test/java/com/ibm/icu/dev/test/TestFmwk.java:[237,57] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
String foo = Integer.toString(ch, 16).toUpperCase(Locale.ROOT);' or 'String foo = Integer.toString(ch, 16).toUpperCase(Locale.getDefault());' or 'String foo = Ascii.toUpperCase(Integer.toString(ch, 16));
icu4j/main/framework/src/test/java/com/ibm/icu/dev/test/TestFmwk.java:[246,57] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
String foo = Integer.toString(ch, 16).toUpperCase(Locale.ROOT);' or 'String foo = Integer.toString(ch, 16).toUpperCase(Locale.getDefault());' or 'String foo = Ascii.toUpperCase(Integer.toString(ch, 16));
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[1007,63] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
String region = subdivision.substring(0, 2).toUpperCase(Locale.ROOT);' or 'String region = subdivision.substring(0, 2).toUpperCase(Locale.getDefault());' or 'String region = Ascii.toUpperCase(subdivision.substring(0, 2));
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[4470,43] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
region = region.toLowerCase(Locale.ROOT);' or 'region = region.toLowerCase(Locale.getDefault());' or 'region = Ascii.toLowerCase(region);
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/LanguageTag.java:[284,29] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
s = s.toUpperCase(Locale.ROOT);' or 's = s.toUpperCase(Locale.getDefault());' or 's = Ascii.toUpperCase(s);
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/LanguageTag.java:[306,48] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
String singleton = s.toLowerCase(Locale.ROOT);' or 'String singleton = s.toLowerCase(Locale.getDefault());' or 'String singleton = Ascii.toLowerCase(s);
icu4j/main/core/src/main/java/com/ibm/icu/impl/personname/PersonNameFormatterImpl.java:[88,55] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
? length.toString().toLowerCase(Locale.ROOT)' or '? length.toString().toLowerCase(Locale.getDefault())' or '? Ascii.toLowerCase(length.toString())
icu4j/main/core/src/main/java/com/ibm/icu/impl/personname/PersonNameFormatterImpl.java:[92,58] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
? formality.toString().toLowerCase(Locale.ROOT)' or '? formality.toString().toLowerCase(Locale.getDefault())' or '? Ascii.toLowerCase(formality.toString())
icu4j/main/core/src/main/java/com/ibm/icu/impl/personname/PersonNameFormatterImpl.java:[95,62] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
lengthStr + "-" + usage.toString().toLowerCase(Locale.ROOT) + "-" + formalityStr;' or 'lengthStr + "-" + usage.toString().toLowerCase(Locale.getDefault()) + "-" + formalityStr;' or 'lengthStr + "-" + Ascii.toLowerCase(usage.toString()) + "-" + formalityStr;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DataDrivenNumberFormatTestUtility.java:[282,34] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
return (breaks.toUpperCase(Locale.ROOT).indexOf(code) != -1);' or 'return (breaks.toUpperCase(Locale.getDefault()).indexOf(code) != -1);' or 'return (Ascii.toUpperCase(breaks).indexOf(code) != -1);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/PersonNameConsistencyTest.java:[220,90] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
builder.setLength(PersonNameFormatter.Length.valueOf(lengthStr.toUpperCase(Locale.ROOT)));' or 'builder.setLength(PersonNameFormatter.Length.valueOf(lengthStr.toUpperCase(Locale.getDefault())));' or 'builder.setLength(PersonNameFormatter.Length.valueOf(Ascii.toUpperCase(lengthStr)));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/PersonNameConsistencyTest.java:[221,87] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
builder.setUsage(PersonNameFormatter.Usage.valueOf(usageStr.toUpperCase(Locale.ROOT)));' or 'builder.setUsage(PersonNameFormatter.Usage.valueOf(usageStr.toUpperCase(Locale.getDefault())));' or 'builder.setUsage(PersonNameFormatter.Usage.valueOf(Ascii.toUpperCase(usageStr)));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/PersonNameConsistencyTest.java:[223,86] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
PersonNameFormatter.Formality.valueOf(formalityStr.toUpperCase(Locale.ROOT)));' or 'PersonNameFormatter.Formality.valueOf(formalityStr.toUpperCase(Locale.getDefault())));' or 'PersonNameFormatter.Formality.valueOf(Ascii.toUpperCase(formalityStr)));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[315,70] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
String source = "0x" + Integer.toString(start, 16).toUpperCase(Locale.ROOT);' or 'String source = "0x" + Integer.toString(start, 16).toUpperCase(Locale.getDefault());' or 'String source = "0x" + Ascii.toUpperCase(Integer.toString(start, 16));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[316,82] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
if (start != end) source += "..0x" + Integer.toString(end, 16).toUpperCase(Locale.ROOT);' or 'if (start != end) source += "..0x" + Integer.toString(end, 16).toUpperCase(Locale.getDefault());' or 'if (start != end) source += "..0x" + Ascii.toUpperCase(Integer.toString(end, 16));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/normalizer/NormalizerBuilder.java:[493,70] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
String result = Long.toString(i & 0xFFFFFFFFL, 16).toUpperCase(Locale.ROOT);' or 'String result = Long.toString(i & 0xFFFFFFFFL, 16).toUpperCase(Locale.getDefault());' or 'String result = Ascii.toUpperCase(Long.toString(i & 0xFFFFFFFFL, 16));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/normalizer/NormalizerBuilder.java:[501,59] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
String result = Integer.toString(i, 16).toUpperCase(Locale.ROOT);' or 'String result = Integer.toString(i, 16).toUpperCase(Locale.getDefault());' or 'String result = Ascii.toUpperCase(Integer.toString(i, 16));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/number/NumberSkeletonTest.java:[369,59] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
String modeString = mode.toString().toLowerCase(Locale.ROOT).replace('_', '-');' or 'String modeString = mode.toString().toLowerCase(Locale.getDefault()).replace('_', '-');' or 'String modeString = Ascii.toLowerCase(mode.toString()).replace('_', '-');
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/IDNAConformanceTest.java:[75,40] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
if (desc.toLowerCase(Locale.ROOT).indexOf("UseSTD3ASCIIRules".toLowerCase()) == -1) {' or 'if (desc.toLowerCase(Locale.getDefault()).indexOf("UseSTD3ASCIIRules".toLowerCase()) == -1) {' or 'if (Ascii.toLowerCase(desc).indexOf("UseSTD3ASCIIRules".toLowerCase()) == -1) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/IDNAConformanceTest.java:[75,82] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
if (desc.toLowerCase().indexOf("UseSTD3ASCIIRules".toLowerCase(Locale.ROOT)) == -1) {' or 'if (desc.toLowerCase().indexOf("UseSTD3ASCIIRules".toLowerCase(Locale.getDefault())) == -1) {' or 'if (desc.toLowerCase().indexOf(Ascii.toLowerCase("UseSTD3ASCIIRules")) == -1) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/IDNAConformanceTest.java:[116,40] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
if (desc.toLowerCase(Locale.ROOT).indexOf("UseSTD3ASCIIRules".toLowerCase()) == -1) {' or 'if (desc.toLowerCase(Locale.getDefault()).indexOf("UseSTD3ASCIIRules".toLowerCase()) == -1) {' or 'if (Ascii.toLowerCase(desc).indexOf("UseSTD3ASCIIRules".toLowerCase()) == -1) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/IDNAConformanceTest.java:[116,82] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
if (desc.toLowerCase().indexOf("UseSTD3ASCIIRules".toLowerCase(Locale.ROOT)) == -1) {' or 'if (desc.toLowerCase().indexOf("UseSTD3ASCIIRules".toLowerCase(Locale.getDefault())) == -1) {' or 'if (desc.toLowerCase().indexOf(Ascii.toLowerCase("UseSTD3ASCIIRules")) == -1) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[309,66] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
&& !out.toString().equals(expected.toLowerCase(Locale.ROOT))) {' or '&& !out.toString().equals(expected.toLowerCase(Locale.getDefault()))) {' or '&& !out.toString().equals(Ascii.toLowerCase(expected))) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[341,66] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
&& !out.toString().equals(expected.toLowerCase(Locale.ROOT))) {' or '&& !out.toString().equals(expected.toLowerCase(Locale.getDefault()))) {' or '&& !out.toString().equals(Ascii.toLowerCase(expected))) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNA.java:[371,66] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
&& !out.toString().equals(expected.toLowerCase(Locale.ROOT))) {' or '&& !out.toString().equals(expected.toLowerCase(Locale.getDefault()))) {' or '&& !out.toString().equals(Ascii.toLowerCase(expected))) {
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/TestUtility.java:[17,57] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
String foo = Integer.toString(ch, 16).toUpperCase(Locale.ROOT);' or 'String foo = Integer.toString(ch, 16).toUpperCase(Locale.getDefault());' or 'String foo = Ascii.toUpperCase(Integer.toString(ch, 16));
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/TestUtility.java:[22,57] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
String foo = Integer.toString(ch, 16).toUpperCase(Locale.ROOT);' or 'String foo = Integer.toString(ch, 16).toUpperCase(Locale.getDefault());' or 'String foo = Ascii.toUpperCase(Integer.toString(ch, 16));
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/WriteCharts.java:[407,45] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
return results.toString().toUpperCase(Locale.ROOT);' or 'return results.toString().toUpperCase(Locale.getDefault());' or 'return Ascii.toUpperCase(results.toString());
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNARef.java:[374,66] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
&& !out.toString().equals(expected.toLowerCase(Locale.ROOT))) {' or '&& !out.toString().equals(expected.toLowerCase(Locale.getDefault()))) {' or '&& !out.toString().equals(Ascii.toLowerCase(expected))) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNARef.java:[404,66] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
&& !out.toString().equals(expected.toLowerCase(Locale.ROOT))) {' or '&& !out.toString().equals(expected.toLowerCase(Locale.getDefault()))) {' or '&& !out.toString().equals(Ascii.toLowerCase(expected))) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestIDNARef.java:[434,66] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
&& !out.toString().equals(expected.toLowerCase(Locale.ROOT))) {' or '&& !out.toString().equals(expected.toLowerCase(Locale.getDefault()))) {' or '&& !out.toString().equals(Ascii.toLowerCase(expected))) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestStringPrep.java:[192,32] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
if (!src.toLowerCase(Locale.ROOT).equals(destStr)) {' or 'if (!src.toLowerCase(Locale.getDefault()).equals(destStr)) {' or 'if (!Ascii.toLowerCase(src).equals(destStr)) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/DumbTextComponent.java:[838,60] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
String result = Integer.toString(ch, 16).toUpperCase(Locale.ROOT);' or 'String result = Integer.toString(ch, 16).toUpperCase(Locale.getDefault());' or 'String result = Ascii.toUpperCase(Integer.toString(ch, 16));
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/docs/APIData.java:[173,48] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
internal = args[++i].toLowerCase(Locale.ROOT).charAt(0) == 't';' or 'internal = args[++i].toLowerCase(Locale.getDefault()).charAt(0) == 't';' or 'internal = Ascii.toLowerCase(args[++i]).charAt(0) == 't';
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/docs/CodeMangler.java:[682,72] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
String key = line.substring(mark, i).toLowerCase(Locale.ROOT);' or 'String key = line.substring(mark, i).toLowerCase(Locale.getDefault());' or 'String key = Ascii.toLowerCase(line.substring(mark, i));
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/OpenTypeTagBuilder.java:[40,41] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
String upperTag = tag.toUpperCase(Locale.ROOT);' or 'String upperTag = tag.toUpperCase(Locale.getDefault());' or 'String upperTag = Ascii.toUpperCase(tag);
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/OpenTypeTagBuilder.java:[65,50] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
+ enumName.toUpperCase(Locale.ROOT)' or '+ enumName.toUpperCase(Locale.getDefault())' or '+ Ascii.toUpperCase(enumName)
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/ScriptData.java:[61,66] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
+ UScript.getShortName(scriptCode).toLowerCase(Locale.ROOT)' or '+ UScript.getShortName(scriptCode).toLowerCase(Locale.getDefault())' or '+ Ascii.toLowerCase(UScript.getShortName(scriptCode))
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/ScriptData.java:[141,83] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
fScriptNames[script - fMinScript] = UScript.getName(script).toUpperCase(Locale.ROOT);' or 'fScriptNames[script - fMinScript] = UScript.getName(script).toUpperCase(Locale.getDefault());' or 'fScriptNames[script - fMinScript] = Ascii.toUpperCase(UScript.getName(script));
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/ScriptData.java:[142,87] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
fScriptTags[script - fMinScript] = UScript.getShortName(script).toLowerCase(Locale.ROOT);' or 'fScriptTags[script - fMinScript] = UScript.getShortName(script).toLowerCase(Locale.getDefault());' or 'fScriptTags[script - fMinScript] = Ascii.toLowerCase(UScript.getShortName(script));
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/ScriptIDModuleWriter.java:[151,75] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
output.print(languageData.getTagLabel(language).toLowerCase(Locale.ROOT));' or 'output.print(languageData.getTagLabel(language).toLowerCase(Locale.getDefault()));' or 'output.print(Ascii.toLowerCase(languageData.getTagLabel(language)));
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/ScriptIDModuleWriter.java:[176,75] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
output.print(languageData.getTagLabel(language).toLowerCase(Locale.ROOT));' or 'output.print(languageData.getTagLabel(language).toLowerCase(Locale.getDefault()));' or 'output.print(Ascii.toLowerCase(languageData.getTagLabel(language)));
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/layout/TagUtilities.java:[65,34] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
return tag.toLowerCase(Locale.ROOT);' or 'return tag.toLowerCase(Locale.getDefault());' or 'return Ascii.toLowerCase(tag);
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/PerfTest.java:[140,49] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
String name = org.toLowerCase(Locale.ROOT);' or 'String name = org.toLowerCase(Locale.getDefault());' or 'String name = Ascii.toLowerCase(org);
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/PerfTest.java:[161,41] Specify a `Locale` when calling `String#to{Lower,Upper}Case`. (Note: there are multiple suggested fixes; the third may be most appropriate if you're dealing with ASCII Strings.)
Did you mean
String tn1 = name.toLowerCase(Locale.ROOT);' or 'String tn1 = name.toLowerCase(Locale.getDefault());' or 'String tn1 = Ascii.toLowerCase(name);

[ICU_PRIORITY_2] StringCharset (32) 🔗

File and line number Message
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/charsetdet/TestCharsetDetector.java:[127,34] StringCharset
Did you mean
byte[] bytes = s.getBytes(ISO_8859_1);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/charsetdet/TestCharsetDetector.java:[160,34] StringCharset
Did you mean
byte[] bytes = s.getBytes(UTF_8);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/charsetdet/TestCharsetDetector.java:[183,41] StringCharset
Did you mean
byte[] beBytes = source.getBytes(UTF_16);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/charsetdet/TestCharsetDetector.java:[217,36] StringCharset
Did you mean
byte[] bISO = sISO.getBytes(ISO_8859_1);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/charsetdet/TestCharsetDetector.java:[1333,36] StringCharset
Did you mean
byte[] bISO = sISO.getBytes(ISO_8859_1);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/charsetdet/TestCharsetDetector.java:[1369,38] StringCharset
Did you mean
textBytes = text.getBytes(ISO_8859_1);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/charsetdet/TestCharsetDetector.java:[1392,31] StringCharset
Did you mean
bytes = s.getBytes(ISO_8859_1);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/WriteNumberFormatSerialTestData.java:[93,38] StringCharset
Did you mean
.getBytes(UTF_8));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/WriteNumberFormatSerialTestData.java:[103,57] StringCharset
Did you mean
file.write(new String("\n };\n").getBytes(UTF_8));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/NFS4StringPrep.java:[68,35] StringCharset
Did you mean
String s = new String(src, UTF_8);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/NFS4StringPrep.java:[71,39] StringCharset
Did you mean
return out.toString().getBytes(UTF_8);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/NFS4StringPrep.java:[128,35] StringCharset
Did you mean
String s = new String(src, UTF_8);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/NFS4StringPrep.java:[151,39] StringCharset
Did you mean
return out.toString().getBytes(UTF_8);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestData.java:[501,42] StringCharset
Did you mean
input = new String(bytes, UTF_8);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/TestData.java:[503,68] StringCharset
Did you mean
output = (bytes == null) ? null : new String(bytes, UTF_8);
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationCreationMethodTest.java:[95,30] StringCharset
Did you mean
s = new String(c, UTF_16BE);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/UConverterDataReader.java:[411,35] StringCharset
Did you mean
sd.name = new String(name, US_ASCII);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestStringPrep.java:[109,72] StringCharset
Did you mean
byte[] dest = NFS4StringPrep.mixed_prepare(src.getBytes(UTF_8));
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestStringPrep.java:[110,53] StringCharset
Did you mean
String destString = new String(dest, UTF_8);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestStringPrep.java:[127,72] StringCharset
Did you mean
byte[] dest = NFS4StringPrep.mixed_prepare(src.getBytes(UTF_8));
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestStringPrep.java:[146,70] StringCharset
Did you mean
byte[] dest = NFS4StringPrep.cis_prepare(src.getBytes(UTF_8));
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestStringPrep.java:[147,53] StringCharset
Did you mean
String destString = new String(dest, UTF_8);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestStringPrep.java:[166,51] StringCharset
Did you mean
NFS4StringPrep.cs_prepare(src.getBytes(UTF_8), false);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestStringPrep.java:[174,65] StringCharset
Did you mean
byte[] dest = NFS4StringPrep.cs_prepare(src.getBytes(UTF_8), false);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestStringPrep.java:[175,46] StringCharset
Did you mean
String destStr = new String(dest, UTF_8);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestStringPrep.java:[190,65] StringCharset
Did you mean
byte[] dest = NFS4StringPrep.cs_prepare(src.getBytes(UTF_8), false);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestStringPrep.java:[191,46] StringCharset
Did you mean
String destStr = new String(dest, UTF_8);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestStringPrep.java:[205,65] StringCharset
Did you mean
byte[] dest = NFS4StringPrep.cs_prepare(src.getBytes(UTF_8), true);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestStringPrep.java:[206,46] StringCharset
Did you mean
String destStr = new String(dest, UTF_8);
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/localeconverter/XLIFF2ICUConverter.java:[731,46] StringCharset
Did you mean
byte[] bytes = value.getBytes(UTF_8);
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/localeconverter/XLIFF2ICUConverter.java:[1391,41] StringCharset
Did you mean
byte[] bytes = line.getBytes(UTF_8);
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/localeconverter/XLIFF2ICUConverter.java:[1425,40] StringCharset
Did you mean
byte[] bytes = BOM.getBytes(UTF_8);

[ICU_PRIORITY_1] StringSplitter (44) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[1503,73] String.split(String) has surprising behavior
Did you mean
String aliasTo = Iterables.get(Splitter.on(' ').split(res.get("replacement").getString()), 0);
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[1586,66] String.split(String) has surprising behavior
Did you mean
List<String> replacementFields = Splitter.on('_').splitToList(replacement);
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[4113,73] String.split(String) has surprising behavior
Did you mean
Iterable<String> uattributes = Splitter.onPattern("[-_]").split(getKeywordValue(key));
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[1278,63] String.split(String) has surprising behavior
Did you mean
Iterable<String> tzids = Splitter.on(' ').split(regionalData.getString());
icu4j/main/core/src/main/java/com/ibm/icu/impl/Utility.java:[1783,40] String.split(String) has surprising behavior
Did you mean
Iterable<String> parts = Splitter.on(separator).split(string);
icu4j/main/core/src/main/java/com/ibm/icu/util/LocalePriorityList.java:[401,57] String.split(String) has surprising behavior
Did you mean
final Iterable<String> items = Splitter.on(languageSplitter).split(acceptLanguageList.trim());
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/LocaleValidityChecker.java:[96,49] String.split(String) has surprising behavior
Did you mean
for (String variant : Splitter.on(SEPARATOR).split(variantString)) {
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/LocaleValidityChecker.java:[167,44] String.split(String) has surprising behavior
Did you mean
for (String subtag : Splitter.on(SEPARATOR).split(extensionString)) {
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/LocaleValidityChecker.java:[342,43] String.split(String) has surprising behavior
Did you mean
List<String> list = Splitter.on(SEPARATOR).splitToList(extensionString.substring(startIndex));
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/UnitsConverter.java:[377,45] String.split(String) has surprising behavior
Did you mean
List<String> fractions = Splitter.on('/').splitToList(factor);
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/UnitsConverter.java:[391,67] String.split(String) has surprising behavior
Did you mean
for (String poweredEntity : Splitter.onPattern(Pattern.quote("*")).split(factorWithoutDivision)) {
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/UnitsConverter.java:[596,51] String.split(String) has surprising behavior
Did you mean
List<String> entities = Splitter.onPattern(Pattern.quote("^")).splitToList(poweredEntity);
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/ConversionRates.java:[253,55] String.split(String) has surprising behavior
Did you mean
List<String> numbers = Splitter.on('/').splitToList(numberWithDivision);
icu4j/main/core/src/main/java/com/ibm/icu/message2/DateTimeFunctionFactory.java:[302,64] String.split(String) has surprising behavior
Did you mean
List<String> tzParts = Splitter.on(':').splitToList(tzPart.substring(1));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/charsetdet/TestCharsetDetector.java:[490,55] String.split(String) has surprising behavior
Did you mean
List<String> encodingList = Splitter.on(' ').splitToList(encodings);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/charsetdet/TestCharsetDetector.java:[492,59] String.split(String) has surprising behavior
Did you mean
List<String> params = Splitter.on('/').splitToList(encodingList[e]);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/PersonNameConsistencyTest.java:[134,44] String.split(String) has surprising behavior
Did you mean
List<String> lineFields = Splitter.on(';').splitToList(line);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/PersonNameConsistencyTest.java:[180,62] String.split(String) has surprising behavior
Did you mean
List<String> fieldNamePieces = Splitter.on('-').splitToList(fieldName);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/impl/UnitsTest.java:[683,38] String.split(String) has surprising behavior
Did you mean
List<String> fields =
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/impl/UnitsTest.java:[768,38] String.split(String) has surprising behavior
Did you mean
List<String> fields =
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterTest.java:[791,50] String.split(String) has surprising behavior
Did you mean
List<String> dmChars = Splitter.onPattern(" +").splitToList(d);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/normalizer/UTS46Test.java:[274,45] String.split(String) has surprising behavior
Did you mean
for (String e : Splitter.on('|').split(data[3])) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/RBBILSTMTest.java:[58,44] String.split(String) has surprising behavior
Did you mean
List<String> = Splitter.on('\t').splitToList(line);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/RBBIMonkeyTest.java:[434,42] String.split(String) has surprising behavior
Did you mean
for (String line : Splitter.onPattern("\\r?\\n").split(rules)) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/text/SpoofCheckerTest.java:[789,49] String.split(String) has surprising behavior
Did you mean
for (String oneCharAsHexString : Splitter.onPattern("\\s+").split(in)) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/TestLocaleValidity.java:[286,58] String.split(String) has surprising behavior
Did you mean
Iterable<String> parts = Splitter.on('-').split(extensionString);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/MeasureUnitGeneratorTest.java:[389,51] String.split(String) has surprising behavior
Did you mean
List<String> nameParts = Splitter.on("_PER_").splitToList(javaName);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/PluralRulesTest.java:[687,69] String.split(String) has surprising behavior
Did you mean
for (String categoryAndExpected : Splitter.onPattern("\\s*;\\s*").split(categoriesAndExpected)) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/PluralRulesTest.java:[688,69] String.split(String) has surprising behavior
Did you mean
List<String> categoryFromExpected = Splitter.onPattern("\\s*:\\s*").splitToList(categoryAndExpected);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/PluralRulesTest.java:[690,61] String.split(String) has surprising behavior
Did you mean
for (String value : Splitter.onPattern("\\s*,\\s*").split(categoryFromExpected[1])) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/PluralRulesTest.java:[694,45] String.split(String) has surprising behavior
Did you mean
List<String> values = Splitter.onPattern("\\s*~\\s*").splitToList(value);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/PluralRulesTest.java:[1291,74] String.split(String) has surprising behavior
Did you mean
ruleString += " NOR " + Iterables.get(Splitter.on('@').split(rules.getRules(keyword2)), 0);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/PluralRulesTest.java:[1295,61] String.split(String) has surprising behavior
Did you mean
ruleString = rule == null ? null : Iterables.get(Splitter.on('@').split(rule), 0);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/PluralRulesTest.java:[1353,49] String.split(String) has surprising behavior
Did you mean
for (String ruleResult : Splitter.on(';').split(result)) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/PluralRulesTest.java:[1354,57] String.split(String) has surprising behavior
Did you mean
List<String> ruleAndValues = Splitter.on(':').splitToList(ruleResult);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/PluralRulesTest.java:[1367,55] String.split(String) has surprising behavior
Did you mean
for (String value : Splitter.on(',').split(valueList)) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/PluralRulesTest.java:[1804,39] String.split(String) has surprising behavior
Did you mean
List<String> parts = Splitter.onPattern("\\s*;\\s*").splitToList(test);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/PluralRulesTest.java:[1805,53] String.split(String) has surprising behavior
Did you mean
for (String localeString : Splitter.onPattern("\\s*,\\s*").split(parts[0])) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/rbbi/LSTMBreakEngineTest.java:[72,44] String.split(String) has surprising behavior
Did you mean
List<String> = Splitter.on('\t').splitToList(line);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ULocaleTest.java:[3719,50] String.split(String) has surprising behavior
Did you mean
Iterable<String> attrs = Splitter.on(',').split(testcase[1]);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ULocaleTest.java:[3727,50] String.split(String) has surprising behavior
Did you mean
List<String> ukeys = Splitter.on(',').splitToList(testcase[2]);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ULocaleTest.java:[4705,44] String.split(String) has surprising behavior
Did you mean
List<String> fields = Splitter.on("\t;\t").splitToList(line);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ULocaleTest.java:[4756,44] String.split(String) has surprising behavior
Did you mean
List<String> fields = Splitter.onPattern("[ \t]?;[ \t]?").splitToList(line);
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/timezone/ICUZDump.java:[252,42] String.split(String) has surprising behavior
Did you mean
List<String> years = Splitter.on(',').splitToList(val);

[ICU_PRIORITY_1] SynchronizeOnNonFinalField [FragileCode] (21) 🔗

File and line number Message
icu4j/main/framework/src/test/java/com/ibm/icu/dev/test/TestUtil.java:[142,29] Synchronizing on non-final fields is not safe: if the field is ever updated, different threads may end up locking on different objects.
icu4j/main/core/src/main/java/com/ibm/icu/impl/JavaTimeZone.java:[119,21] Synchronizing on non-final fields is not safe: if the field is ever updated, different threads may end up locking on different objects.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UCharacterName.java:[240,21] Synchronizing on non-final fields is not safe: if the field is ever updated, different threads may end up locking on different objects.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UCharacterName.java:[339,25] Synchronizing on non-final fields is not safe: if the field is ever updated, different threads may end up locking on different objects.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UCharacterName.java:[462,21] Synchronizing on non-final fields is not safe: if the field is ever updated, different threads may end up locking on different objects.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UCharacterName.java:[661,33] Synchronizing on non-final fields is not safe: if the field is ever updated, different threads may end up locking on different objects.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UCharacterName.java:[714,37] Synchronizing on non-final fields is not safe: if the field is ever updated, different threads may end up locking on different objects.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UCharacterName.java:[769,45] Synchronizing on non-final fields is not safe: if the field is ever updated, different threads may end up locking on different objects.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UCharacterName.java:[823,25] Synchronizing on non-final fields is not safe: if the field is ever updated, different threads may end up locking on different objects.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UCharacterName.java:[1105,25] Synchronizing on non-final fields is not safe: if the field is ever updated, different threads may end up locking on different objects.
icu4j/main/core/src/main/java/com/ibm/icu/impl/UCharacterName.java:[1423,37] Synchronizing on non-final fields is not safe: if the field is ever updated, different threads may end up locking on different objects.
icu4j/main/core/src/main/java/com/ibm/icu/util/EasterHoliday.java:[170,21] Synchronizing on non-final fields is not safe: if the field is ever updated, different threads may end up locking on different objects.
icu4j/main/core/src/main/java/com/ibm/icu/util/EasterHoliday.java:[190,21] Synchronizing on non-final fields is not safe: if the field is ever updated, different threads may end up locking on different objects.
icu4j/main/collate/src/main/java/com/ibm/icu/impl/text/RbnfScannerProviderImpl.java:[76,21] Synchronizing on non-final fields is not safe: if the field is ever updated, different threads may end up locking on different objects.
icu4j/main/collate/src/main/java/com/ibm/icu/impl/text/RbnfScannerProviderImpl.java:[83,21] Synchronizing on non-final fields is not safe: if the field is ever updated, different threads may end up locking on different objects.
icu4j/main/collate/src/main/java/com/ibm/icu/text/RuleBasedCollator.java:[267,21] Synchronizing on non-final fields is not safe: if the field is ever updated, different threads may end up locking on different objects.
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationThreadTest.java:[204,29] Synchronizing on non-final fields is not safe: if the field is ever updated, different threads may end up locking on different objects.
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarPanel.java:[58,21] Synchronizing on non-final fields is not safe: if the field is ever updated, different threads may end up locking on different objects.
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarPanel.java:[96,21] Synchronizing on non-final fields is not safe: if the field is ever updated, different threads may end up locking on different objects.
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/holiday/HolidayCalendarDemo.java:[421,25] Synchronizing on non-final fields is not safe: if the field is ever updated, different threads may end up locking on different objects.
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/holiday/HolidayCalendarDemo.java:[447,25] Synchronizing on non-final fields is not safe: if the field is ever updated, different threads may end up locking on different objects.

[WARNING] ThreadJoinLoop (4) 🔗

File and line number Message
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateTimeGeneratorTest.java:[1520,23] Thread.join needs to be immediately surrounded by a loop until it succeeds. Consider using Uninterruptibles.joinUninterruptibly.
Did you mean
Uninterruptibles.joinUninterruptibly(wk);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/MeasureUnitThreadTest.java:[35,23] Thread.join needs to be immediately surrounded by a loop until it succeeds. Consider using Uninterruptibles.joinUninterruptibly.
Did you mean
Uninterruptibles.joinUninterruptibly(thread);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRegressionTest.java:[1438,23] Thread.join needs to be immediately surrounded by a loop until it succeeds. Consider using Uninterruptibles.joinUninterruptibly.
Did you mean
Uninterruptibles.joinUninterruptibly(wk);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/ICUServiceTestSample.java:[27,18] Thread.join needs to be immediately surrounded by a loop until it succeeds. Consider using Uninterruptibles.joinUninterruptibly.
Did you mean
Uninterruptibles.joinUninterruptibly(t);

[WARNING] ThreadPriorityCheck (1) 🔗

File and line number Message
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/ICUServiceThreadTest.java:[130,28] Relying on the thread scheduler is discouraged.

[ICU_PRIORITY_2] UndefinedEquals (66) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/PatternStringUtils.java:[243,28] Subtypes of CharSequence are not guaranteed to implement a useful #equals method.
Did you mean
if (input.toString().equals("'")) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[321,22] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[421,33] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[687,45] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[728,41] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[778,29] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[793,30] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[847,33] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[853,33] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[858,33] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[862,33] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[866,33] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[872,33] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1303,24] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1598,25] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1767,27] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1804,30] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[1923,29] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[2477,34] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/ChineseTest.java:[128,27] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/ChineseTest.java:[269,28] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/DangiTest.java:[129,27] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/EthiopicTest.java:[382,27] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[186,24] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[770,29] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[964,27] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[982,27] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[1017,27] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[3296,28] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IslamicTest.java:[264,27] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/JapaneseTest.java:[365,33] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/PersianTest.java:[116,27] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[594,42] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[594,70] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormatAPI.java:[45,29] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[846,32] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[883,32] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[1096,50] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[1108,50] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[1119,50] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[1129,40] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[1140,50] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[1486,27] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[2452,53] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/AlphabeticIndexTest.java:[369,43] Subtypes of CharSequence are not guaranteed to implement a useful #equals method.
Did you mean
if (record.getName().toString().equals(probe)) {
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/AlphabeticIndexTest.java:[874,52] Subtypes of CharSequence are not guaranteed to implement a useful #equals method.
Did you mean
if (!record.getName().toString().equals(myName)) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DataDrivenFormatTest.java:[189,38] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[991,41] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[3760,31] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[3760,53] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[3790,42] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[3820,34] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[3887,26] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[3892,26] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[3922,26] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[4211,25] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[4231,32] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[4564,24] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[6113,56] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[6875,27] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[6878,27] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[8102,32] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/serializable/SerializableTestUtility.java:[461,25] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/serializable/SerializableTestUtility.java:[465,29] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/serializable/SerializableTestUtility.java:[469,66] Subtypes of Date are not guaranteed to implement a useful #equals method.
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/serializable/CalendarHandler.java:[60,37] Subtypes of Date are not guaranteed to implement a useful #equals method.

[WARNING] UnnecessaryLongToIntConversion (1) 🔗

File and line number Message
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/AlphabeticIndexTest.java:[556,20] Converting a long or Long to an int to pass as a long parameter is usually not necessary. If this conversion is intentional, consider `Longs.constrainToRange()` instead.
Did you mean
itemCount.getTotal(),' or 'Longs.constrainToRange(itemCount.getTotal(), Integer.MIN_VALUE, Integer.MAX_VALUE),

[WARNING] UnnecessaryParentheses (4074) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/impl/BMPSet.java:[102,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return latin1Contains[c];
icu4j/main/core/src/main/java/com/ibm/icu/impl/UnicodeSetStringSpan.java:[148,40] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
allocSize = stringsLength * 2;
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/InternalLocaleBuilder.java:[370,23] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert "japanese".equals(extensions.getUnicodeLocaleType("ca"));
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/InternalLocaleBuilder.java:[377,23] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert "thai".equals(extensions.getUnicodeLocaleType("nu"));
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/LanguageTag.java:[164,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert itr.isDone();
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/LanguageTag.java:[165,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert !sts.isError();
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/LanguageTag.java:[635,15] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return AsciiUtil.caseIgnoreMatch(PRIVATEUSE, String.valueOf(c));
icu4j/main/core/src/main/java/com/ibm/icu/text/Edits.java:[635,31] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert hasPrevious;
icu4j/main/core/src/main/java/com/ibm/icu/impl/Trie2.java:[335,34] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (other == null || ! other.getClass().equals(getClass())) {
icu4j/main/core/src/main/java/com/ibm/icu/impl/DateNumberFormat.java:[250,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
num = negative ? num * -1 : num;
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[569,31] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (inchars[offset] == '-') {
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[574,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
} else if (inchars[offset] == '+') {
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[605,28] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ( !(UCharacter.isDigit(si))) bad(inchars);
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[605,30] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ((! UCharacter.isDigit(si))) bad(inchars);
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[616,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ( inchars[i + 1] == ('-')) {
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[616,40] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ((inchars[i + 1]) == '-') {
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[619,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
} else if ( inchars[i + 1] == ('+')) k = i + 2;
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[619,47] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
} else if ((inchars[i + 1]) == '+') k = i + 2;
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[622,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
elen = length - (k - offset);
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[631,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ( !(UCharacter.isDigit(sj))) bad(inchars);
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[631,34] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ((! UCharacter.isDigit(sj))) bad(inchars);
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[634,40] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
} else dvalue = (sj) - (('0'));
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[634,41] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
} else dvalue = ( sj) - (('0'));
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[634,49] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
} else dvalue = ((sj)) - ('0');
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[634,50] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
} else dvalue = ((sj)) - ( '0');
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[665,24] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ( UCharacter.digit(si, 10) != 0) break i;
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[685,57] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (sj <= '9') mant[i] = (byte) ( (sj) - (('0'))); /* easy */
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[685,58] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (sj <= '9') mant[i] = (byte) (( sj) - (('0'))); /* easy */
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[685,66] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (sj <= '9') mant[i] = (byte) (((sj)) - ('0')); /* easy */
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[685,67] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (sj <= '9') mant[i] = (byte) (((sj)) - ( '0')); /* easy */
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[702,42] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
mant[i] = (byte) ( (inchars[j]) - (('0')));
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[702,43] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
mant[i] = (byte) (( inchars[j]) - (('0')));
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[702,59] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
mant[i] = (byte) (((inchars[j])) - ('0'));
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[702,60] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
mant[i] = (byte) (((inchars[j])) - ( '0'));
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[759,13] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
this( new java.math.BigDecimal(num).toString());
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[780,23] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (num >= -9) {
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[791,42] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
} else if (num == -1) {
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[834,34] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
mant[i] = (byte) - ((byte) (num % 10));
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[881,34] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
mant[i] = (byte) - ((byte) (num % 10));
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[1086,52] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
res.exp = res.exp - (reqdig - usellen);
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[1111,52] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
res.exp = res.exp - (reqdig - userlen);
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[1487,12] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ( this.compareTo(rhs, set) >= 0) return this.plus(set);
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[1528,12] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ( this.compareTo(rhs, set) <= 0) return this.plus(set);
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[1825,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ( !seenbit) continue i;
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[1935,33] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ((num > 127) | (num < -128))
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[1991,12] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ( !(((obj instanceof com.ibm.icu.math.BigDecimal)))) return false;
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[1991,14] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ((! ((obj instanceof com.ibm.icu.math.BigDecimal)))) return false;
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[1991,15] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ((!( (obj instanceof com.ibm.icu.math.BigDecimal)))) return false;
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[2188,22] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ((before < -1) | (before == 0)) badarg("format", 1, java.lang.String.valueOf(before));
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[2189,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (after < -1) badarg("format", 2, java.lang.String.valueOf(after));
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[2190,24] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ((explaces < -1) | (explaces == 0))
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[2192,23] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (exdigits < -1) badarg("format", 4, java.lang.String.valueOf(explaces));
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[2197,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
} else if (exformint == -1) exformint = com.ibm.icu.math.MathContext.SCIENTIFIC;
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[2207,31] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (exround == -1) exround = ROUND_HALF_UP;
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[2228,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (exdigits == -1) num.form = (byte) com.ibm.icu.math.MathContext.PLAIN;
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[2234,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
else if (mag < -5) num.form = (byte) exformint;
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[2255,31] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
lead = ((num.exp + num.mant.length) - 1) % 3;
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[2267,40] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
num.exp = num.exp - (after - thisafter);
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[2439,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ( !(allzero(mant, lodigit + 1)))
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[2439,18] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ((! allzero(mant, lodigit + 1)))
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[2522,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ( !(allzero(mant, cstart)))
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[2522,18] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ((! allzero(mant, cstart)))
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[2705,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
newlen = res.mant.length - (ourscale - scale);
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[2731,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ((num > 32767) | (num < -32768))
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[2821,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ( !(allzero(mant, mant.length + exp)))
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[2821,18] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ((! allzero(mant, mant.length + exp)))
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[2979,45] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
cmant[i] = (char) (mant[i] + ('0'));
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[2979,46] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
cmant[i] = (char) (mant[i] + ( '0'));
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[3159,25] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (scale == -1) return lhs;
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[3170,25] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (scale == -1) scale = lhs.scale();
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[3175,31] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
reqdig = (reqdig - (rhs.mant.length - 1)) - rhs.exp;
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[3357,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ( (lasthave % 5) == 0) res.mant[have - 1] = (byte) (lasthave + 1);
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[3368,40] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
res.exp = res.exp - (res.mant.length - have);
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[3483,22] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
else if (m == -1) quickm = true;
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[3591,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ( !(allzero(this.mant, dig)))
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[3591,18] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ((! allzero(this.mant, dig)))
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[3595,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ( !(allzero(rhs.mant, dig)))
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[3595,18] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ((! allzero(rhs.mant, dig)))
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[3656,24] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ( !(allzero(oldmant, len)))
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[3656,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ((! allzero(oldmant, len)))
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[3660,45] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
else if (first == 5) if ( !(allzero(oldmant, len + 1))) increment = sign;
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[3660,47] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
else if (first == 5) if ((! allzero(oldmant, len + 1))) increment = sign;
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[3664,28] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ( !(allzero(oldmant, len + 1))) increment = sign;
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[3664,30] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ((! allzero(oldmant, len + 1))) increment = sign;
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[3665,46] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
else /* 0.5000 */ if ( ((mant[mant.length - 1]) % 2) != 0)
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[3665,48] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
else /* 0.5000 */ if ((( mant[mant.length - 1] % 2)) != 0)
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[3671,24] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ( !(allzero(oldmant, len))) increment = sign;
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[3671,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ((! allzero(oldmant, len))) increment = sign;
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[3673,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (sign > 0) if ( !(allzero(oldmant, len))) increment = sign;
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[3673,40] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (sign > 0) if ((! allzero(oldmant, len))) increment = sign;
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[3675,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (sign < 0) if ( !(allzero(oldmant, len))) increment = sign;
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[3675,40] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (sign < 0) if ((! allzero(oldmant, len))) increment = sign;
icu4j/main/core/src/main/java/com/ibm/icu/math/BigDecimal.java:[3791,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
} else if (mag < -5) form = (byte) set.form;
icu4j/main/core/src/main/java/com/ibm/icu/math/MathContext.java:[414,12] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ( !(isValidRound(setroundingmode)))
icu4j/main/core/src/main/java/com/ibm/icu/math/MathContext.java:[414,14] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ((! isValidRound(setroundingmode)))
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/MeasureUnitImpl.java:[627,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ( result.singleUnits.size() >= 2) {
icu4j/main/core/src/main/java/com/ibm/icu/impl/ICUBinary.java:[765,90] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(byte) (version >> 24), (byte) (version >> 16), (byte) (version >> 8), (byte) version
icu4j/main/core/src/main/java/com/ibm/icu/impl/Normalizer2Impl.java:[694,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert !(isHangulLV(norm16_2) || isHangulLVT(norm16_2));
icu4j/main/core/src/main/java/com/ibm/icu/impl/Normalizer2Impl.java:[2087,41] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
key1 = COMP_1_TRAIL_LIMIT + ( (trail >> COMP_1_TRAIL_SHIFT) & ~COMP_1_TRIPLE);
icu4j/main/core/src/main/java/com/ibm/icu/util/CodePointTrie.java:[490,15] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert haveValue;
icu4j/main/core/src/main/java/com/ibm/icu/util/MutableCodePointTrie.java:[232,15] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert haveValue;
icu4j/main/core/src/main/java/com/ibm/icu/util/MutableCodePointTrie.java:[1290,23] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert hasLongI3Blocks;
icu4j/main/core/src/main/java/com/ibm/icu/impl/ICUResourceBundle.java:[178,43] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ((fullBase != null) && ( resDepth > defDepth)) {
icu4j/main/core/src/main/java/com/ibm/icu/impl/ICUResourceBundle.java:[220,47] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ((fullBase != null) && ( resDepth > defDepth)) {
icu4j/main/core/src/main/java/com/ibm/icu/impl/ICUResourceBundle.java:[271,60] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
ICUResourceBundle irb = (ICUResourceBundle) b.getObject(keyword);
icu4j/main/core/src/main/java/com/ibm/icu/impl/IntTrieBuilder.java:[367,24] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
int v = m_index_[i] >>> Trie.INDEX_STAGE_2_SHIFT_;
icu4j/main/core/src/main/java/com/ibm/icu/util/Calendar.java:[2809,53] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
newYear = maxYear - ( -newYear % maxYear);
icu4j/main/core/src/main/java/com/ibm/icu/util/TimeZone.java:[1091,15] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return ID.equals(((TimeZone) obj).ID);
icu4j/main/core/src/main/java/com/ibm/icu/text/Normalizer.java:[1675,23] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
options &= ~option;
icu4j/main/core/src/main/java/com/ibm/icu/impl/OlsonTimeZone.java:[412,24] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
|| ! finalZone.hasSameRules(o.finalZone)) {
icu4j/main/core/src/main/java/com/ibm/icu/impl/OlsonTimeZone.java:[532,29] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( transPre32[i * 2] & 0x00000000FFFFFFFFL) << 32
icu4j/main/core/src/main/java/com/ibm/icu/impl/OlsonTimeZone.java:[533,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
| ( transPre32[i * 2 + 1] & 0x00000000FFFFFFFFL);
icu4j/main/core/src/main/java/com/ibm/icu/impl/OlsonTimeZone.java:[544,29] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( transPost32[i * 2] & 0x00000000FFFFFFFFL) << 32
icu4j/main/core/src/main/java/com/ibm/icu/impl/OlsonTimeZone.java:[545,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
| ( transPost32[i * 2 + 1] & 0x00000000FFFFFFFFL);
icu4j/main/core/src/main/java/com/ibm/icu/util/SimpleTimeZone.java:[381,15] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert !isFrozen();
icu4j/main/core/src/main/java/com/ibm/icu/util/SimpleTimeZone.java:[511,15] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert !isFrozen();
icu4j/main/core/src/main/java/com/ibm/icu/util/SimpleTimeZone.java:[531,15] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert !isFrozen();
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/AffixUtils.java:[666,15] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
tag |= -(long) type << 32;
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/DecimalQuantity_AbstractBCD.java:[1029,15] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert !isApproximate;
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/DecimalQuantity_AbstractBCD.java:[1069,15] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert !isApproximate;
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/DecimalQuantity_AbstractBCD.java:[1083,12] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ( --p >= lowerPos) {
icu4j/main/core/src/main/java/com/ibm/icu/impl/number/DecimalQuantity_AbstractBCD.java:[1120,15] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert !isApproximate;
icu4j/main/core/src/main/java/com/ibm/icu/impl/Punycode.java:[266,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return (( ch & 0xfffff800) == 0xd800);
icu4j/main/core/src/main/java/com/ibm/icu/text/SimpleDateFormat.java:[3597,48] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
haveMonthPat
icu4j/main/core/src/main/java/com/ibm/icu/text/SimpleDateFormat.java:[3609,48] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
haveMonthPat
icu4j/main/core/src/main/java/com/ibm/icu/text/SimpleDateFormat.java:[3630,40] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
haveMonthPat
icu4j/main/core/src/main/java/com/ibm/icu/text/SimpleDateFormat.java:[3642,40] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
haveMonthPat
icu4j/main/core/src/main/java/com/ibm/icu/text/SimpleDateFormat.java:[3680,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
&& getBooleanAttribute(
icu4j/main/core/src/main/java/com/ibm/icu/text/SimpleDateFormat.java:[3762,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
&& getBooleanAttribute(
icu4j/main/core/src/main/java/com/ibm/icu/impl/SimpleFilteredSentenceBreakIterator.java:[104,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
&& (rfwd = forwardsPartialTrie.nextForCodePoint(uch)).hasNext()) {}
icu4j/main/core/src/main/java/com/ibm/icu/impl/Utility.java:[68,47] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (source instanceof Object[]) return arrayEquals((Object[]) source, target);
icu4j/main/core/src/main/java/com/ibm/icu/impl/Utility.java:[69,44] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (source instanceof int[]) return arrayEquals((int[]) source, target);
icu4j/main/core/src/main/java/com/ibm/icu/impl/Utility.java:[70,47] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (source instanceof double[]) return arrayEquals((double[]) source, target);
icu4j/main/core/src/main/java/com/ibm/icu/impl/Utility.java:[71,45] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (source instanceof byte[]) return arrayEquals((byte[]) source, target);
icu4j/main/core/src/main/java/com/ibm/icu/impl/Utility.java:[398,52] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
char c = (char) ((state[1] << 8) | ( value & 0xFF));
icu4j/main/core/src/main/java/com/ibm/icu/impl/Utility.java:[444,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return ( s.charAt(2 * i) << 16) | s.charAt(2 * i + 1);
icu4j/main/core/src/main/java/com/ibm/icu/impl/Utility.java:[449,22] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
int length = ( s.charAt(0) << 16) | (s.charAt(1));
icu4j/main/core/src/main/java/com/ibm/icu/impl/Utility.java:[449,45] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
int length = ((s.charAt(0)) << 16) | s.charAt(1);
icu4j/main/core/src/main/java/com/ibm/icu/impl/Utility.java:[475,22] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
int length = ( s.charAt(0) << 16) | (s.charAt(1));
icu4j/main/core/src/main/java/com/ibm/icu/impl/Utility.java:[475,45] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
int length = ((s.charAt(0)) << 16) | s.charAt(1);
icu4j/main/core/src/main/java/com/ibm/icu/impl/Utility.java:[501,22] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
int length = ( s.charAt(0) << 16) | (s.charAt(1));
icu4j/main/core/src/main/java/com/ibm/icu/impl/Utility.java:[501,45] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
int length = ((s.charAt(0)) << 16) | s.charAt(1);
icu4j/main/core/src/main/java/com/ibm/icu/impl/breakiter/LSTMBreakEngine.java:[50,34] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
bytes[3] = (byte) d;
icu4j/main/core/src/main/java/com/ibm/icu/impl/breakiter/LSTMBreakEngine.java:[65,30] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
bytes[3] = (byte) d;
icu4j/main/core/src/main/java/com/ibm/icu/impl/locale/LikelySubtags.java:[424,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
&& !(matchLanguage || matchScript || (matchRegion && language.isEmpty()))) {
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/ComplexUnitsConverter.java:[54,15] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert !this.units_.isEmpty();
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/ComplexUnitsConverter.java:[100,15] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert !this.units_.isEmpty();
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/ComplexUnitsConverter.java:[201,23] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
quantity = unitsConverters_.get(i).convert(quantity);
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/UnitsConverter.java:[147,24] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
this.specialSource.equals("beaufort")
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/UnitsConverter.java:[159,24] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
this.specialTarget.equals("beaufort")
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/UnitsConverter.java:[191,24] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
this.specialTarget.equals("beaufort")
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/UnitsConverter.java:[203,24] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
this.specialSource.equals("beaufort")
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/UnitsConverter.java:[372,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert !factor.isEmpty();
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/ConversionRates.java:[171,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert UnitsData.Constants.CONVERSION_UNIT_TABLE_NAME.equals(key.toString());
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/UnitPreferences.java:[210,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert UnitsData.Constants.UNIT_PREFERENCE_TABLE_NAME.equals(key.toString());
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/UnitPreferences.java:[254,31] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert !unitPreferences.isEmpty();
icu4j/main/core/src/main/java/com/ibm/icu/impl/units/UnitsData.java:[265,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert key.toString().equals(Constants.CATEGORY_TABLE_NAME);
icu4j/main/core/src/main/java/com/ibm/icu/message2/MFDataModelFormatter.java:[653,30] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
throw e;
icu4j/main/core/src/main/java/com/ibm/icu/text/ArabicShaping.java:[2060,23] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
&& isTailChar(ch)
icu4j/main/core/src/main/java/com/ibm/icu/text/Bidi.java:[1439,25] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
this.isInverse = isInverse;
icu4j/main/core/src/main/java/com/ibm/icu/text/Bidi.java:[2065,31] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
closingPosition = - qOpening.match;
icu4j/main/core/src/main/java/com/ibm/icu/text/Bidi.java:[3316,12] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ( addLevel != 0 || (start < start0)) {
icu4j/main/core/src/main/java/com/ibm/icu/text/Bidi.java:[4243,22] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
paraLvl = runDirection.equals(TextAttribute.RUN_DIRECTION_LTR) ? LTR : RTL;
icu4j/main/core/src/main/java/com/ibm/icu/text/Bidi.java:[5179,34] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
lev = (byte) ( -lev | LEVEL_OVERRIDE);
icu4j/main/core/src/main/java/com/ibm/icu/text/Bidi.java:[5298,30] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
keys[i] = ((long) runs[i].start << 32) + i;
icu4j/main/core/src/main/java/com/ibm/icu/text/DateIntervalInfo.java:[958,53] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
DateIntervalInfo result = (DateIntervalInfo) this.cloneUnfrozenDII();
icu4j/main/core/src/main/java/com/ibm/icu/text/TimeUnitFormat.java:[276,60] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
MessageFormat pattern = (MessageFormat) patternEntry.getValue()[styl];
icu4j/main/core/src/main/java/com/ibm/icu/text/NFRule.java:[794,69] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
toInsertInto.insert(pos, rulePatternFormat.format((long) pluralVal));
icu4j/main/core/src/main/java/com/ibm/icu/text/RBBIRuleScanner.java:[418,41] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
long update = (long) n.fVal * 10 + v;
icu4j/main/core/src/main/java/com/ibm/icu/text/RBBIRuleScanner.java:[422,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
n.fVal = (int) update;
icu4j/main/core/src/main/java/com/ibm/icu/text/RuleBasedBreakIterator.java:[201,23] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
&& !fRData.fRuleSource.equals(other.fRData.fRuleSource)) {
icu4j/main/core/src/main/java/com/ibm/icu/text/RuleBasedBreakIterator.java:[411,15] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert endShouldBeBoundary;
icu4j/main/core/src/main/java/com/ibm/icu/text/RuleBasedBreakIterator.java:[1111,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert false;
icu4j/main/core/src/main/java/com/ibm/icu/text/RuleBasedBreakIterator.java:[1155,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert false;
icu4j/main/core/src/main/java/com/ibm/icu/text/UTF16.java:[880,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (hadLeadSurrogate && isTrailSurrogate(source.charAt(offset16))) {
icu4j/main/core/src/main/java/com/ibm/icu/text/UTF16.java:[931,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (hadLeadSurrogate && isTrailSurrogate(source.charAt(offset16))) {
icu4j/main/core/src/main/java/com/ibm/icu/text/UTF16.java:[985,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (hadLeadSurrogate && isTrailSurrogate(source[offset16])) {
icu4j/main/core/src/main/java/com/ibm/icu/text/UTF16.java:[2289,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
Math.ceil(
icu4j/main/core/src/main/java/com/ibm/icu/util/StringTrieBuilder.java:[287,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert !hasValue;
icu4j/main/core/src/main/java/com/ibm/icu/util/CharsTrieBuilder.java:[231,33] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
intUnits[0] = (char) CharsTrie.kThreeUnitValueLead;
icu4j/main/core/src/main/java/com/ibm/icu/util/CharsTrieBuilder.java:[261,33] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
intUnits[0] = (char) CharsTrie.kThreeUnitNodeValueLead;
icu4j/main/core/src/main/java/com/ibm/icu/util/CharsTrieBuilder.java:[296,33] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
intUnits[0] = (char) CharsTrie.kThreeUnitDeltaLead;
icu4j/main/core/src/main/java/com/ibm/icu/util/ChineseCalendar.java:[729,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new CalendarAstronomer(ms)
icu4j/main/core/src/main/java/com/ibm/icu/util/ChineseCalendar.java:[748,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new CalendarAstronomer(daysToMillis(days))
icu4j/main/core/src/main/java/com/ibm/icu/util/ChineseCalendar.java:[778,58] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
* new CalendarAstronomer(
icu4j/main/core/src/main/java/com/ibm/icu/util/CompactByteArray.java:[129,15] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return values[(indices[index >> BLOCKSHIFT] & 0xFFFF) + (index & BLOCKMASK)];
icu4j/main/core/src/main/java/com/ibm/icu/util/HebrewCalendar.java:[1016,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return ordinalMonth + (( !isLeapYear(year) && (ordinalMonth > ADAR_1)) ? 1 : 0);
icu4j/main/core/src/main/java/com/ibm/icu/util/IslamicCalendar.java:[1326,21] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
double age = new CalendarAstronomer(time).getMoonAge();
icu4j/main/core/src/main/java/com/ibm/icu/util/RuleBasedTimeZone.java:[707,31] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
rule = historicTransitions.get(idx).getTo();
icu4j/main/core/src/main/java/com/ibm/icu/util/RuleBasedTimeZone.java:[722,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
rule = historicTransitions.get(idx).getTo();
icu4j/main/core/src/test/java/com/ibm/icu/dev/impl/number/DecimalQuantity_SimpleStorage.java:[570,25] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flags = (flags & ~NEGATIVE_FLAG) | (isNegative ? NEGATIVE_FLAG : 0);
icu4j/main/core/src/test/java/com/ibm/icu/dev/impl/number/DecimalQuantity_SimpleStorage.java:[579,25] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flags = (flags & ~INFINITY_FLAG) | (isInfinity ? INFINITY_FLAG : 0);
icu4j/main/core/src/test/java/com/ibm/icu/dev/impl/number/DecimalQuantity_SimpleStorage.java:[588,25] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flags = (flags & ~NAN_FLAG) | (isNaN ? NAN_FLAG : 0);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bidi/BiDiConformanceTest.java:[222,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
paraLevel = (byte) -paraDirection;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bidi/BiDiConformanceTest.java:[637,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return ( c == ' ' || (c) == '\t' || (c) == '\r' || (c) == '\n');
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bidi/BiDiConformanceTest.java:[637,30] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return ((c) == ' ' || c == '\t' || (c) == '\r' || (c) == '\n');
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bidi/BiDiConformanceTest.java:[637,45] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return ((c) == ' ' || (c) == '\t' || c == '\r' || (c) == '\n');
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bidi/BiDiConformanceTest.java:[637,60] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return ((c) == ' ' || (c) == '\t' || (c) == '\r' || c == '\n');
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bidi/TestFailureRecovery.java:[36,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
bidi.setPara("abc", (byte) -1, null);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[145,46] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
private static final short sneg = (short) -1;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[191,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("con001", com.ibm.icu.math.BigDecimal.ZERO.toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[192,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("con002", com.ibm.icu.math.BigDecimal.ONE.toString().equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[193,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("con003", com.ibm.icu.math.BigDecimal.TEN.toString().equals("10"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[194,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("con004", com.ibm.icu.math.BigDecimal.ZERO.intValueExact() == 0);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[195,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("con005", com.ibm.icu.math.BigDecimal.ONE.intValueExact() == 1);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[196,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("con006", com.ibm.icu.math.BigDecimal.TEN.intValueExact() == 10);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[201,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal("0"))).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[201,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal("0")).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[205,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal("1"))).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[205,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal("1")).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[209,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal("10"))).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[209,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal("10")).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[213,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal("1000"))).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[213,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal("1000")).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[217,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal("10.0"))).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[217,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal("10.0")).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[221,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal("10.1"))).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[221,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal("10.1")).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[225,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal("-1.1"))).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[225,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal("-1.1")).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[229,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal("-9.0"))).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[229,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal("-9.0")).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[233,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal("0.9"))).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[233,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal("0.9")).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[239,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal(num))).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[239,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal(num)).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[244,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal(num))).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[244,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal(num)).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[249,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal(num))).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[249,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal(num)).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[254,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal(num))).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[254,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal(num)).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[262,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal(num))).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[262,21] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(new java.math.BigDecimal(num)).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[279,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(bip)).toString().equals(bip.toString()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[279,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(bip).toString()).equals(bip.toString()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[281,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cbi002", (new com.ibm.icu.math.BigDecimal(biz)).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[281,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cbi002", ( new com.ibm.icu.math.BigDecimal(biz).toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[284,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(bin)).toString().equals(bin.toString()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[284,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(bin).toString()).equals(bin.toString()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[298,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("cbs001", bda.toString().equals("123456789"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[299,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("cbs002", bdb.toString().equals("1234.56789"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[300,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("cbs003", bmc.toString().equals("0.000000123456789"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[307,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("cbs011", bda.toString().equals("123456789123456789123456789"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[308,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("cbs012", bdb.toString().equals("12345678912345678912.3456789"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[309,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("cbs013", bmc.toString().equals("12345678912345.6789123456789"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[310,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("cbs014", bmd.toString().equals("12345678.9123456789123456789"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[311,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("cbs015", bme.toString().equals("0.00123456789123456789123456789"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[324,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = e.getMessage().equals("Negative scale: -8");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[331,13] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
ca = "123.45".toCharArray();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[333,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca001", (new com.ibm.icu.math.BigDecimal(ca)).toString().equals("123.45"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[333,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca001", ( new com.ibm.icu.math.BigDecimal(ca).toString()).equals("123.45"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[345,13] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
ca = "123.45".toCharArray();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[348,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(ca, 0, 6)).toString().equals("123.45"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[348,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(ca, 0, 6).toString()).equals("123.45"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[350,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca102", (new com.ibm.icu.math.BigDecimal(ca, 1, 5)).toString().equals("23.45"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[350,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca102", ( new com.ibm.icu.math.BigDecimal(ca, 1, 5).toString()).equals("23.45"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[352,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca103", (new com.ibm.icu.math.BigDecimal(ca, 2, 4)).toString().equals("3.45"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[352,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca103", ( new com.ibm.icu.math.BigDecimal(ca, 2, 4).toString()).equals("3.45"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[354,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca104", (new com.ibm.icu.math.BigDecimal(ca, 3, 3)).toString().equals("0.45"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[354,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca104", ( new com.ibm.icu.math.BigDecimal(ca, 3, 3).toString()).equals("0.45"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[356,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca105", (new com.ibm.icu.math.BigDecimal(ca, 4, 2)).toString().equals("45"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[356,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca105", ( new com.ibm.icu.math.BigDecimal(ca, 4, 2).toString()).equals("45"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[358,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca106", (new com.ibm.icu.math.BigDecimal(ca, 5, 1)).toString().equals("5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[358,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca106", ( new com.ibm.icu.math.BigDecimal(ca, 5, 1).toString()).equals("5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[361,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca110", (new com.ibm.icu.math.BigDecimal(ca, 0, 1)).toString().equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[361,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca110", ( new com.ibm.icu.math.BigDecimal(ca, 0, 1).toString()).equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[363,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca111", (new com.ibm.icu.math.BigDecimal(ca, 1, 1)).toString().equals("2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[363,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca111", ( new com.ibm.icu.math.BigDecimal(ca, 1, 1).toString()).equals("2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[365,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca112", (new com.ibm.icu.math.BigDecimal(ca, 2, 1)).toString().equals("3"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[365,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca112", ( new com.ibm.icu.math.BigDecimal(ca, 2, 1).toString()).equals("3"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[367,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca113", (new com.ibm.icu.math.BigDecimal(ca, 4, 1)).toString().equals("4"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[367,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca113", ( new com.ibm.icu.math.BigDecimal(ca, 4, 1).toString()).equals("4"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[370,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca120", (new com.ibm.icu.math.BigDecimal(ca, 0, 2)).toString().equals("12"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[370,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca120", ( new com.ibm.icu.math.BigDecimal(ca, 0, 2).toString()).equals("12"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[372,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca121", (new com.ibm.icu.math.BigDecimal(ca, 1, 2)).toString().equals("23"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[372,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca121", ( new com.ibm.icu.math.BigDecimal(ca, 1, 2).toString()).equals("23"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[374,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca122", (new com.ibm.icu.math.BigDecimal(ca, 2, 2)).toString().equals("3"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[374,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca122", ( new com.ibm.icu.math.BigDecimal(ca, 2, 2).toString()).equals("3"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[376,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca123", (new com.ibm.icu.math.BigDecimal(ca, 3, 2)).toString().equals("0.4"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[376,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca123", ( new com.ibm.icu.math.BigDecimal(ca, 3, 2).toString()).equals("0.4"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[379,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca130", (new com.ibm.icu.math.BigDecimal(ca, 0, 3)).toString().equals("123"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[379,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca130", ( new com.ibm.icu.math.BigDecimal(ca, 0, 3).toString()).equals("123"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[381,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca131", (new com.ibm.icu.math.BigDecimal(ca, 1, 3)).toString().equals("23"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[381,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca131", ( new com.ibm.icu.math.BigDecimal(ca, 1, 3).toString()).equals("23"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[383,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca132", (new com.ibm.icu.math.BigDecimal(ca, 2, 3)).toString().equals("3.4"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[383,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca132", ( new com.ibm.icu.math.BigDecimal(ca, 2, 3).toString()).equals("3.4"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[386,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca140", (new com.ibm.icu.math.BigDecimal(ca, 0, 4)).toString().equals("123"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[386,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca140", ( new com.ibm.icu.math.BigDecimal(ca, 0, 4).toString()).equals("123"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[388,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca141", (new com.ibm.icu.math.BigDecimal(ca, 1, 4)).toString().equals("23.4"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[388,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca141", ( new com.ibm.icu.math.BigDecimal(ca, 1, 4).toString()).equals("23.4"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[391,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca150", (new com.ibm.icu.math.BigDecimal(ca, 0, 5)).toString().equals("123.4"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[391,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca150", ( new com.ibm.icu.math.BigDecimal(ca, 0, 5).toString()).equals("123.4"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[394,13] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
ca = "x23.4x".toCharArray();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[396,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca160", (new com.ibm.icu.math.BigDecimal(ca, 1, 4)).toString().equals("23.4"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[396,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca160", ( new com.ibm.icu.math.BigDecimal(ca, 1, 4).toString()).equals("23.4"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[398,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca161", (new com.ibm.icu.math.BigDecimal(ca, 1, 1)).toString().equals("2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[398,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca161", ( new com.ibm.icu.math.BigDecimal(ca, 1, 1).toString()).equals("2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[400,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca162", (new com.ibm.icu.math.BigDecimal(ca, 4, 1)).toString().equals("4"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[400,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cca162", ( new com.ibm.icu.math.BigDecimal(ca, 4, 1).toString()).equals("4"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[402,13] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
ca = "0123456789.9876543210".toCharArray();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[405,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(ca, 0, 21)).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[405,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(ca, 0, 21).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[409,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(ca, 1, 20)).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[409,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(ca, 1, 20).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[413,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(ca, 2, 19)).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[413,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(ca, 2, 19).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[417,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(ca, 2, 18)).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[417,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(ca, 2, 18).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[421,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(ca, 2, 17)).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[421,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(ca, 2, 17).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[425,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(ca, 2, 16)).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[425,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(ca, 2, 16).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[470,22] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
dpos = dpos / 10;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[474,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(dneg)).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[474,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(dneg).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[479,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(dzer)).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[479,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(dzer).toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[482,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(dpos)).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[482,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(dpos).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[488,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cdo004", (new com.ibm.icu.math.BigDecimal(dneg5)).toString().equals("-0.5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[488,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cdo004", ( new com.ibm.icu.math.BigDecimal(dneg5).toString()).equals("-0.5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[490,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cdo005", (new com.ibm.icu.math.BigDecimal(dpos5)).toString().equals("0.5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[490,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cdo005", ( new com.ibm.icu.math.BigDecimal(dpos5).toString()).equals("0.5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[497,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(dmin)).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[497,21] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(dmin).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[503,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(dmax)).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[503,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(dmax).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[509,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d = d / 10;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[512,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(d)).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[512,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(d).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[515,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d = d / 10;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[518,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(d)).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[518,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(d).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[521,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d = d / 10;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[524,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(d)).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[524,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(d).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[527,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d = d / 10;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[530,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(d)).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[530,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(d).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[534,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d = d / 10;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[537,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(d)).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[537,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(d).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[541,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d = d / 10;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[544,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(d)).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[544,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(d).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[548,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d = d / 10;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[552,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(d)).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[552,21] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(d).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[556,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d = d / 10;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[560,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(d)).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[560,21] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(d).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[564,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d = d / 10;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[568,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(d)).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[568,21] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(d).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[597,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(imin)).toString().equals("-2147483648"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[597,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(imin).toString()).equals("-2147483648"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[600,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(imax)).toString().equals("2147483647"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[600,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(imax).toString()).equals("2147483647"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[602,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin003", (new com.ibm.icu.math.BigDecimal(ineg)).toString().equals("-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[602,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin003", ( new com.ibm.icu.math.BigDecimal(ineg).toString()).equals("-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[604,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin004", (new com.ibm.icu.math.BigDecimal(izer)).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[604,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin004", ( new com.ibm.icu.math.BigDecimal(izer).toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[606,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin005", (new com.ibm.icu.math.BigDecimal(ipos)).toString().equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[606,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin005", ( new com.ibm.icu.math.BigDecimal(ipos).toString()).equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[608,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin006", (new com.ibm.icu.math.BigDecimal(10)).toString().equals("10"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[608,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin006", ( new com.ibm.icu.math.BigDecimal(10).toString()).equals("10"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[610,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin007", (new com.ibm.icu.math.BigDecimal(9)).toString().equals("9"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[610,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin007", ( new com.ibm.icu.math.BigDecimal(9).toString()).equals("9"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[612,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin008", (new com.ibm.icu.math.BigDecimal(5)).toString().equals("5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[612,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin008", ( new com.ibm.icu.math.BigDecimal(5).toString()).equals("5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[614,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin009", (new com.ibm.icu.math.BigDecimal(2)).toString().equals("2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[614,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin009", ( new com.ibm.icu.math.BigDecimal(2).toString()).equals("2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[616,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin010", (new com.ibm.icu.math.BigDecimal(-2)).toString().equals("-2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[616,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin010", ( new com.ibm.icu.math.BigDecimal(-2).toString()).equals("-2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[618,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin011", (new com.ibm.icu.math.BigDecimal(-5)).toString().equals("-5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[618,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin011", ( new com.ibm.icu.math.BigDecimal(-5).toString()).equals("-5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[620,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin012", (new com.ibm.icu.math.BigDecimal(-9)).toString().equals("-9"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[620,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin012", ( new com.ibm.icu.math.BigDecimal(-9).toString()).equals("-9"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[622,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin013", (new com.ibm.icu.math.BigDecimal(-10)).toString().equals("-10"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[622,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin013", ( new com.ibm.icu.math.BigDecimal(-10).toString()).equals("-10"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[624,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin014", (new com.ibm.icu.math.BigDecimal(-11)).toString().equals("-11"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[624,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin014", ( new com.ibm.icu.math.BigDecimal(-11).toString()).equals("-11"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[626,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin015", (new com.ibm.icu.math.BigDecimal(-99)).toString().equals("-99"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[626,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin015", ( new com.ibm.icu.math.BigDecimal(-99).toString()).equals("-99"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[628,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin016", (new com.ibm.icu.math.BigDecimal(-100)).toString().equals("-100"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[628,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin016", ( new com.ibm.icu.math.BigDecimal(-100).toString()).equals("-100"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[630,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin017", (new com.ibm.icu.math.BigDecimal(-999)).toString().equals("-999"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[630,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin017", ( new com.ibm.icu.math.BigDecimal(-999).toString()).equals("-999"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[632,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin018", (new com.ibm.icu.math.BigDecimal(-1000)).toString().equals("-1000"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[632,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin018", ( new com.ibm.icu.math.BigDecimal(-1000).toString()).equals("-1000"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[635,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin019", (new com.ibm.icu.math.BigDecimal(11)).toString().equals("11"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[635,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin019", ( new com.ibm.icu.math.BigDecimal(11).toString()).equals("11"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[637,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin020", (new com.ibm.icu.math.BigDecimal(99)).toString().equals("99"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[637,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin020", ( new com.ibm.icu.math.BigDecimal(99).toString()).equals("99"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[639,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin021", (new com.ibm.icu.math.BigDecimal(100)).toString().equals("100"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[639,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin021", ( new com.ibm.icu.math.BigDecimal(100).toString()).equals("100"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[641,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin022", (new com.ibm.icu.math.BigDecimal(999)).toString().equals("999"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[641,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin022", ( new com.ibm.icu.math.BigDecimal(999).toString()).equals("999"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[643,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin023", (new com.ibm.icu.math.BigDecimal(1000)).toString().equals("1000"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[643,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cin023", ( new com.ibm.icu.math.BigDecimal(1000).toString()).equals("1000"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[648,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(lmin)).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[648,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(lmin).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[652,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(lmax)).toString().equals("9223372036854775807"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[652,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(lmax).toString()).equals("9223372036854775807"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[654,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"clo003", (new com.ibm.icu.math.BigDecimal(lneg)).toString().equals("-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[654,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"clo003", ( new com.ibm.icu.math.BigDecimal(lneg).toString()).equals("-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[656,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"clo004", (new com.ibm.icu.math.BigDecimal(lzer)).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[656,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"clo004", ( new com.ibm.icu.math.BigDecimal(lzer).toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[658,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"clo005", (new com.ibm.icu.math.BigDecimal(lpos)).toString().equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[658,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"clo005", ( new com.ibm.icu.math.BigDecimal(lpos).toString()).equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[663,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst001", (new com.ibm.icu.math.BigDecimal("12")).toString().equals("12"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[663,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst001", ( new com.ibm.icu.math.BigDecimal("12").toString()).equals("12"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[665,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst002", (new com.ibm.icu.math.BigDecimal("-76")).toString().equals("-76"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[665,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst002", ( new com.ibm.icu.math.BigDecimal("-76").toString()).equals("-76"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[667,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst003", (new com.ibm.icu.math.BigDecimal("12.76")).toString().equals("12.76"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[667,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst003", ( new com.ibm.icu.math.BigDecimal("12.76").toString()).equals("12.76"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[669,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst004", (new com.ibm.icu.math.BigDecimal("+12.76")).toString().equals("12.76"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[669,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst004", ( new com.ibm.icu.math.BigDecimal("+12.76").toString()).equals("12.76"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[671,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst005", (new com.ibm.icu.math.BigDecimal("012.76")).toString().equals("12.76"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[671,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst005", ( new com.ibm.icu.math.BigDecimal("012.76").toString()).equals("12.76"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[673,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst006", (new com.ibm.icu.math.BigDecimal("+0.003")).toString().equals("0.003"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[673,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst006", ( new com.ibm.icu.math.BigDecimal("+0.003").toString()).equals("0.003"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[675,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst007", (new com.ibm.icu.math.BigDecimal("17.")).toString().equals("17"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[675,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst007", ( new com.ibm.icu.math.BigDecimal("17.").toString()).equals("17"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[677,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst008", (new com.ibm.icu.math.BigDecimal(".5")).toString().equals("0.5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[677,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst008", ( new com.ibm.icu.math.BigDecimal(".5").toString()).equals("0.5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[679,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst009", (new com.ibm.icu.math.BigDecimal("044")).toString().equals("44"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[679,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst009", ( new com.ibm.icu.math.BigDecimal("044").toString()).equals("44"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[681,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst010", (new com.ibm.icu.math.BigDecimal("0044")).toString().equals("44"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[681,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst010", ( new com.ibm.icu.math.BigDecimal("0044").toString()).equals("44"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[684,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.0005")).toString().equals("0.0005"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[684,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.0005").toString()).equals("0.0005"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[687,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("00.00005")).toString().equals("0.00005"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[687,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("00.00005").toString()).equals("0.00005"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[690,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.000005")).toString().equals("0.000005"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[690,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.000005").toString()).equals("0.000005"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[693,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.0000005")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[693,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.0000005").toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[697,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.00000005")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[697,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.00000005").toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[701,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12345678.876543210")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[701,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12345678.876543210").toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[705,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2345678.876543210")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[705,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2345678.876543210").toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[709,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("345678.876543210")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[709,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("345678.876543210").toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[713,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0345678.87654321")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[713,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0345678.87654321").toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[717,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("345678.8765432")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[717,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("345678.8765432").toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[721,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+345678.8765432")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[721,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+345678.8765432").toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[725,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+0345678.8765432")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[725,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+0345678.8765432").toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[729,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+00345678.8765432")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[729,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+00345678.8765432").toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[733,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-345678.8765432")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[733,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-345678.8765432").toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[737,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-0345678.8765432")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[737,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-0345678.8765432").toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[741,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-00345678.8765432")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[741,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-00345678.8765432").toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[747,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("\u0e57.\u0e50")).toString().equals("7.0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[747,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("\u0e57.\u0e50").toString()).equals("7.0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[750,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("\u0b66.\u0b67")).toString().equals("0.1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[750,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("\u0b66.\u0b67").toString()).equals("0.1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[753,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("\u0b66\u0b66")).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[753,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("\u0b66\u0b66").toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[756,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("\u0b6a\u0b66")).toString().equals("40"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[756,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("\u0b6a\u0b66").toString()).equals("40"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[760,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst040", (new com.ibm.icu.math.BigDecimal("1E+9")).toString().equals("1E+9"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[760,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst040", ( new com.ibm.icu.math.BigDecimal("1E+9").toString()).equals("1E+9"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[762,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst041", (new com.ibm.icu.math.BigDecimal("1e+09")).toString().equals("1E+9"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[762,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst041", ( new com.ibm.icu.math.BigDecimal("1e+09").toString()).equals("1E+9"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[764,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst042", (new com.ibm.icu.math.BigDecimal("1E+90")).toString().equals("1E+90"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[764,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst042", ( new com.ibm.icu.math.BigDecimal("1E+90").toString()).equals("1E+90"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[766,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst043", (new com.ibm.icu.math.BigDecimal("+1E+009")).toString().equals("1E+9"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[766,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst043", ( new com.ibm.icu.math.BigDecimal("+1E+009").toString()).equals("1E+9"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[768,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst044", (new com.ibm.icu.math.BigDecimal("0E+9")).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[768,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst044", ( new com.ibm.icu.math.BigDecimal("0E+9").toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[770,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst045", (new com.ibm.icu.math.BigDecimal("1E+9")).toString().equals("1E+9"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[770,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst045", ( new com.ibm.icu.math.BigDecimal("1E+9").toString()).equals("1E+9"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[772,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst046", (new com.ibm.icu.math.BigDecimal("1E+09")).toString().equals("1E+9"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[772,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst046", ( new com.ibm.icu.math.BigDecimal("1E+09").toString()).equals("1E+9"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[774,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst047", (new com.ibm.icu.math.BigDecimal("1e+90")).toString().equals("1E+90"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[774,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst047", ( new com.ibm.icu.math.BigDecimal("1e+90").toString()).equals("1E+90"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[776,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst048", (new com.ibm.icu.math.BigDecimal("1E+009")).toString().equals("1E+9"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[776,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst048", ( new com.ibm.icu.math.BigDecimal("1E+009").toString()).equals("1E+9"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[778,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst049", (new com.ibm.icu.math.BigDecimal("0E+9")).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[778,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst049", ( new com.ibm.icu.math.BigDecimal("0E+9").toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[780,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst050", (new com.ibm.icu.math.BigDecimal("1E9")).toString().equals("1E+9"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[780,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst050", ( new com.ibm.icu.math.BigDecimal("1E9").toString()).equals("1E+9"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[782,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst051", (new com.ibm.icu.math.BigDecimal("1e09")).toString().equals("1E+9"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[782,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst051", ( new com.ibm.icu.math.BigDecimal("1e09").toString()).equals("1E+9"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[784,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst052", (new com.ibm.icu.math.BigDecimal("1E90")).toString().equals("1E+90"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[784,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst052", ( new com.ibm.icu.math.BigDecimal("1E90").toString()).equals("1E+90"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[786,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst053", (new com.ibm.icu.math.BigDecimal("1E009")).toString().equals("1E+9"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[786,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst053", ( new com.ibm.icu.math.BigDecimal("1E009").toString()).equals("1E+9"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[788,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst054", (new com.ibm.icu.math.BigDecimal("0E9")).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[788,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst054", ( new com.ibm.icu.math.BigDecimal("0E9").toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[790,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst055", (new com.ibm.icu.math.BigDecimal("0.000e+0")).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[790,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst055", ( new com.ibm.icu.math.BigDecimal("0.000e+0").toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[792,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst056", (new com.ibm.icu.math.BigDecimal("0.000E-1")).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[792,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst056", ( new com.ibm.icu.math.BigDecimal("0.000E-1").toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[794,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst057", (new com.ibm.icu.math.BigDecimal("4E+9")).toString().equals("4E+9"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[794,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst057", ( new com.ibm.icu.math.BigDecimal("4E+9").toString()).equals("4E+9"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[797,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("44E+9")).toString().equals("4.4E+10"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[797,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("44E+9").toString()).equals("4.4E+10"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[800,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.73e-7")).toString().equals("7.3E-8"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[800,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.73e-7").toString()).equals("7.3E-8"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[802,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst060", (new com.ibm.icu.math.BigDecimal("00E+9")).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[802,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst060", ( new com.ibm.icu.math.BigDecimal("00E+9").toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[804,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst061", (new com.ibm.icu.math.BigDecimal("00E-9")).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[804,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst061", ( new com.ibm.icu.math.BigDecimal("00E-9").toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[807,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10E+9")).toString().equals("1.0E+10"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[807,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10E+9").toString()).equals("1.0E+10"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[810,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10E+09")).toString().equals("1.0E+10"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[810,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10E+09").toString()).equals("1.0E+10"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[813,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10e+90")).toString().equals("1.0E+91"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[813,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10e+90").toString()).equals("1.0E+91"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[816,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10E+009")).toString().equals("1.0E+10"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[816,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10E+009").toString()).equals("1.0E+10"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[819,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("100e+9")).toString().equals("1.00E+11"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[819,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("100e+9").toString()).equals("1.00E+11"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[822,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("100e+09")).toString().equals("1.00E+11"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[822,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("100e+09").toString()).equals("1.00E+11"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[825,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("100E+90")).toString().equals("1.00E+92"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[825,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("100E+90").toString()).equals("1.00E+92"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[828,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("100e+009")).toString().equals("1.00E+11"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[828,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("100e+009").toString()).equals("1.00E+11"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[831,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst070", (new com.ibm.icu.math.BigDecimal("1.265")).toString().equals("1.265"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[831,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst070", ( new com.ibm.icu.math.BigDecimal("1.265").toString()).equals("1.265"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[834,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.265E-20")).toString().equals("1.265E-20"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[834,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.265E-20").toString()).equals("1.265E-20"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[837,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.265E-8")).toString().equals("1.265E-8"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[837,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.265E-8").toString()).equals("1.265E-8"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[840,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.265E-4")).toString().equals("1.265E-4"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[840,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.265E-4").toString()).equals("1.265E-4"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[843,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.265E-3")).toString().equals("1.265E-3"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[843,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.265E-3").toString()).equals("1.265E-3"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[846,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.265E-2")).toString().equals("1.265E-2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[846,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.265E-2").toString()).equals("1.265E-2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[849,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.265E-1")).toString().equals("1.265E-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[849,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.265E-1").toString()).equals("1.265E-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[852,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.265E-0")).toString().equals("1.265"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[852,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.265E-0").toString()).equals("1.265"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[855,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.265E+1")).toString().equals("1.265E+1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[855,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.265E+1").toString()).equals("1.265E+1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[858,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.265E+2")).toString().equals("1.265E+2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[858,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.265E+2").toString()).equals("1.265E+2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[861,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.265E+3")).toString().equals("1.265E+3"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[861,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.265E+3").toString()).equals("1.265E+3"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[864,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.265E+4")).toString().equals("1.265E+4"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[864,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.265E+4").toString()).equals("1.265E+4"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[867,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.265E+8")).toString().equals("1.265E+8"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[867,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.265E+8").toString()).equals("1.265E+8"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[870,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.265E+20")).toString().equals("1.265E+20"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[870,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.265E+20").toString()).equals("1.265E+20"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[873,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst090", (new com.ibm.icu.math.BigDecimal("12.65")).toString().equals("12.65"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[873,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst090", ( new com.ibm.icu.math.BigDecimal("12.65").toString()).equals("12.65"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[876,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12.65E-20")).toString().equals("1.265E-19"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[876,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12.65E-20").toString()).equals("1.265E-19"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[879,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12.65E-8")).toString().equals("1.265E-7"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[879,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12.65E-8").toString()).equals("1.265E-7"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[882,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12.65E-4")).toString().equals("1.265E-3"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[882,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12.65E-4").toString()).equals("1.265E-3"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[885,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12.65E-3")).toString().equals("1.265E-2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[885,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12.65E-3").toString()).equals("1.265E-2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[888,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12.65E-2")).toString().equals("1.265E-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[888,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12.65E-2").toString()).equals("1.265E-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[891,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12.65E-1")).toString().equals("1.265"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[891,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12.65E-1").toString()).equals("1.265"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[894,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12.65E-0")).toString().equals("1.265E+1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[894,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12.65E-0").toString()).equals("1.265E+1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[897,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12.65E+1")).toString().equals("1.265E+2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[897,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12.65E+1").toString()).equals("1.265E+2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[900,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12.65E+2")).toString().equals("1.265E+3"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[900,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12.65E+2").toString()).equals("1.265E+3"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[903,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12.65E+3")).toString().equals("1.265E+4"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[903,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12.65E+3").toString()).equals("1.265E+4"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[906,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12.65E+4")).toString().equals("1.265E+5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[906,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12.65E+4").toString()).equals("1.265E+5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[909,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12.65E+8")).toString().equals("1.265E+9"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[909,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12.65E+8").toString()).equals("1.265E+9"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[912,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12.65E+20")).toString().equals("1.265E+21"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[912,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12.65E+20").toString()).equals("1.265E+21"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[915,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst110", (new com.ibm.icu.math.BigDecimal("126.5")).toString().equals("126.5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[915,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst110", ( new com.ibm.icu.math.BigDecimal("126.5").toString()).equals("126.5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[918,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("126.5E-20")).toString().equals("1.265E-18"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[918,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("126.5E-20").toString()).equals("1.265E-18"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[921,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("126.5E-8")).toString().equals("1.265E-6"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[921,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("126.5E-8").toString()).equals("1.265E-6"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[924,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("126.5E-4")).toString().equals("1.265E-2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[924,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("126.5E-4").toString()).equals("1.265E-2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[927,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("126.5E-3")).toString().equals("1.265E-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[927,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("126.5E-3").toString()).equals("1.265E-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[930,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("126.5E-2")).toString().equals("1.265"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[930,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("126.5E-2").toString()).equals("1.265"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[933,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("126.5E-1")).toString().equals("1.265E+1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[933,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("126.5E-1").toString()).equals("1.265E+1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[936,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("126.5E-0")).toString().equals("1.265E+2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[936,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("126.5E-0").toString()).equals("1.265E+2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[939,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("126.5E+1")).toString().equals("1.265E+3"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[939,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("126.5E+1").toString()).equals("1.265E+3"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[942,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("126.5E+2")).toString().equals("1.265E+4"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[942,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("126.5E+2").toString()).equals("1.265E+4"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[945,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("126.5E+3")).toString().equals("1.265E+5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[945,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("126.5E+3").toString()).equals("1.265E+5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[948,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("126.5E+4")).toString().equals("1.265E+6"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[948,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("126.5E+4").toString()).equals("1.265E+6"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[951,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("126.5E+8")).toString().equals("1.265E+10"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[951,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("126.5E+8").toString()).equals("1.265E+10"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[954,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("126.5E+20")).toString().equals("1.265E+22"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[954,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("126.5E+20").toString()).equals("1.265E+22"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[957,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst130", (new com.ibm.icu.math.BigDecimal("1265")).toString().equals("1265"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[957,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cst130", ( new com.ibm.icu.math.BigDecimal("1265").toString()).equals("1265"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[960,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1265E-20")).toString().equals("1.265E-17"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[960,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1265E-20").toString()).equals("1.265E-17"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[963,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1265E-8")).toString().equals("1.265E-5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[963,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1265E-8").toString()).equals("1.265E-5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[966,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1265E-4")).toString().equals("1.265E-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[966,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1265E-4").toString()).equals("1.265E-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[969,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1265E-3")).toString().equals("1.265"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[969,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1265E-3").toString()).equals("1.265"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[972,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1265E-2")).toString().equals("1.265E+1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[972,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1265E-2").toString()).equals("1.265E+1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[975,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1265E-1")).toString().equals("1.265E+2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[975,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1265E-1").toString()).equals("1.265E+2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[978,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1265E-0")).toString().equals("1.265E+3"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[978,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1265E-0").toString()).equals("1.265E+3"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[981,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1265E+1")).toString().equals("1.265E+4"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[981,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1265E+1").toString()).equals("1.265E+4"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[984,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1265E+2")).toString().equals("1.265E+5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[984,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1265E+2").toString()).equals("1.265E+5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[987,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1265E+3")).toString().equals("1.265E+6"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[987,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1265E+3").toString()).equals("1.265E+6"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[990,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1265E+4")).toString().equals("1.265E+7"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[990,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1265E+4").toString()).equals("1.265E+7"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[993,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1265E+8")).toString().equals("1.265E+11"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[993,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1265E+8").toString()).equals("1.265E+11"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[996,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1265E+20")).toString().equals("1.265E+23"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[996,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1265E+20").toString()).equals("1.265E+23"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1000,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.1265")).toString().equals("0.1265"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1000,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.1265").toString()).equals("0.1265"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1003,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.1265E-20")).toString().equals("1.265E-21"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1003,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.1265E-20").toString()).equals("1.265E-21"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1006,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.1265E-8")).toString().equals("1.265E-9"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1006,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.1265E-8").toString()).equals("1.265E-9"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1009,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.1265E-4")).toString().equals("1.265E-5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1009,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.1265E-4").toString()).equals("1.265E-5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1012,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.1265E-3")).toString().equals("1.265E-4"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1012,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.1265E-3").toString()).equals("1.265E-4"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1015,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.1265E-2")).toString().equals("1.265E-3"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1015,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.1265E-2").toString()).equals("1.265E-3"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1018,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.1265E-1")).toString().equals("1.265E-2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1018,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.1265E-1").toString()).equals("1.265E-2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1021,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.1265E-0")).toString().equals("1.265E-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1021,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.1265E-0").toString()).equals("1.265E-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1024,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.1265E+1")).toString().equals("1.265"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1024,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.1265E+1").toString()).equals("1.265"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1027,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.1265E+2")).toString().equals("1.265E+1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1027,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.1265E+2").toString()).equals("1.265E+1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1030,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.1265E+3")).toString().equals("1.265E+2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1030,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.1265E+3").toString()).equals("1.265E+2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1033,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.1265E+4")).toString().equals("1.265E+3"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1033,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.1265E+4").toString()).equals("1.265E+3"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1036,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.1265E+8")).toString().equals("1.265E+7"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1036,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.1265E+8").toString()).equals("1.265E+7"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1039,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.1265E+20")).toString().equals("1.265E+19"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1039,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.1265E+20").toString()).equals("1.265E+19"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1043,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.09e999999999")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1043,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.09e999999999").toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1047,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.9e999999999")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1047,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.9e999999999").toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1051,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9e999999999")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1051,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9e999999999").toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1055,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9.9e999999999")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1055,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9.9e999999999").toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1059,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9.99e999999999")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1059,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9.99e999999999").toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1063,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9.99e-999999999")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1063,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9.99e-999999999").toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1067,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9.9e-999999999")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1067,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9.9e-999999999").toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1071,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9e-999999999")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1071,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9e-999999999").toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1075,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("99e-999999999")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1075,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("99e-999999999").toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1079,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("999e-999999999")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1079,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("999e-999999999").toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1166,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
+ new com.ibm.icu.math.BigDecimal(badstrings[i]).toString());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1193,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("cuc001", com.ibm.icu.math.BigDecimal.ZERO.toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1194,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("cuc002", com.ibm.icu.math.BigDecimal.ONE.toString().equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1195,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("cuc003", com.ibm.icu.math.BigDecimal.TEN.toString().equals("10"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1232,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("cuc020", com.ibm.icu.math.MathContext.DEFAULT.getDigits() == 9);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1235,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.MathContext.DEFAULT.getForm()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1241,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.MathContext.DEFAULT.getRoundingMode()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1247,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("cuc030", mc9.getDigits() == 9);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1248,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("cuc031", mc9.getForm() == com.ibm.icu.math.MathContext.SCIENTIFIC);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1251,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cuc033", mc9.getRoundingMode() == com.ibm.icu.math.MathContext.ROUND_HALF_UP);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1252,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("cuc034", mcld.getDigits() == 9);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1253,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("cuc035", mcld.getForm() == com.ibm.icu.math.MathContext.SCIENTIFIC);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1256,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cuc037", mcld.getRoundingMode() == com.ibm.icu.math.MathContext.ROUND_HALF_UP);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1257,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("cuc038", mcfd.getDigits() == 0);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1258,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("cuc039", mcfd.getForm() == com.ibm.icu.math.MathContext.PLAIN);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1261,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"cuc041", mcfd.getRoundingMode() == com.ibm.icu.math.MathContext.ROUND_HALF_UP);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1279,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"abs001", (new com.ibm.icu.math.BigDecimal("2")).abs().toString().equals("2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1279,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"abs001", ( new com.ibm.icu.math.BigDecimal("2").abs().toString()).equals("2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1281,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"abs002", (new com.ibm.icu.math.BigDecimal("-2")).abs().toString().equals("2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1281,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"abs002", ( new com.ibm.icu.math.BigDecimal("-2").abs().toString()).equals("2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1284,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+0.000")).abs().toString().equals("0.000"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1284,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+0.000").abs().toString()).equals("0.000"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1287,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("00.000")).abs().toString().equals("0.000"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1287,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("00.000").abs().toString()).equals("0.000"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1290,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-0.000")).abs().toString().equals("0.000"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1290,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-0.000").abs().toString()).equals("0.000"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1293,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+0.000")).abs(mcdef).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1293,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+0.000").abs(mcdef).toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1296,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("00.000")).abs(mcdef).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1296,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("00.000").abs(mcdef).toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1299,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-0.000")).abs(mcdef).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1299,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-0.000").abs(mcdef).toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1302,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-2000000")).abs().toString().equals("2000000"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1302,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-2000000").abs().toString()).equals("2000000"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1305,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-2000000")).abs(mcdef).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1305,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-2000000").abs(mcdef).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1309,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-2000000")).abs(mc6).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1309,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-2000000").abs(mc6).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1313,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2000000")).abs(mc6).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1313,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2000000").abs(mc6).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1317,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.2")).abs().toString().equals("0.2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1317,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.2").abs().toString()).equals("0.2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1320,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-0.2")).abs().toString().equals("0.2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1320,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-0.2").abs().toString()).equals("0.2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1323,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.01")).abs().toString().equals("0.01"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1323,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.01").abs().toString()).equals("0.01"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1326,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-0.01")).abs().toString().equals("0.01"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1326,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-0.01").abs().toString()).equals("0.01"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1332,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Too many digits:" + " " + tenlong.toString());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1366,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(2))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1366,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(2)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1372,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5.75"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1372,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5.75")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1378,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1378,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1384,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1384,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1390,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-7"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1390,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-7")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1396,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.7"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1396,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.7")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1402,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.25"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1402,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.25")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1408,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.23456789"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1408,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.23456789")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1415,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.23456789"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1415,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.23456789")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1422,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.4444444444"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1422,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.4444444444")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1429,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.4444444440"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1429,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.4444444440")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1436,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.4444444444"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1436,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.4444444444")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1443,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.4444444444999"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1443,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.4444444444999")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1450,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.4444444445000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1450,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.4444444445000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1457,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("70"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1457,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("70")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1464,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("700"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1464,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("700")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1471,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("7000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1471,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("7000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1478,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("70000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1478,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("70000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1485,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("700000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1485,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("700000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1493,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(2))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1493,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(2)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1499,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5.75"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1499,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5.75")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1505,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1505,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1511,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1511,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1517,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-7"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1517,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-7")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1523,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.7"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1523,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.7")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1529,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.25"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1529,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.25")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1535,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.23456789"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1535,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.23456789")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1542,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.23456789"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1542,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.23456789")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1549,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.4444444444"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1549,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.4444444444")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1556,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.4444444440"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1556,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.4444444440")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1563,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.4444444444"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1563,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.4444444444")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1570,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.4444444444999"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1570,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.4444444444999")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1577,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.4444444445000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1577,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.4444444445000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1584,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("70"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1584,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("70")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1591,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("700"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1591,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("700")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1598,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("7000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1598,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("7000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1605,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("70000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1605,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("70000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1612,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("700000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1612,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("700000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1620,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10000e+9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1620,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10000e+9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1627,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10000e+9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1627,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10000e+9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1634,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10000e+9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1634,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10000e+9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1641,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10000e+9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1641,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10000e+9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1648,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10000e+9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1648,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10000e+9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1655,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10000e+9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1655,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10000e+9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1662,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10000e+9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1662,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10000e+9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1669,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10000e+9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1669,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10000e+9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1676,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10000e+9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1676,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10000e+9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1683,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10000e+9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1683,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10000e+9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1691,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.9998"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1691,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.9998")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1698,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.9998"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1698,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.9998")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1705,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.9998"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1705,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.9998")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1712,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.9998"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1712,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.9998")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1720,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10000e+9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1720,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10000e+9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1727,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10000e+9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1727,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10000e+9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1734,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10000e+9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1734,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10000e+9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1742,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.BigDecimal.ONE
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1749,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.BigDecimal.ONE
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1756,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.BigDecimal.ONE
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1763,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.BigDecimal.ONE
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1770,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.BigDecimal.ONE
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1778,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-56267E-10")).add(zero).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1778,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-56267E-10").add(zero).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1782,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-56267E-6")).add(zero).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1782,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-56267E-6").add(zero).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1786,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-56267E-5")).add(zero).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1786,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-56267E-5").add(zero).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1790,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-56267E-4")).add(zero).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1790,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-56267E-4").add(zero).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1794,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-56267E-3")).add(zero).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1794,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-56267E-3").add(zero).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1798,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-56267E-2")).add(zero).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1798,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-56267E-2").add(zero).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1802,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-56267E-1")).add(zero).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1802,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-56267E-1").add(zero).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1806,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-56267E-0")).add(zero).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1806,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-56267E-0").add(zero).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1810,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-5E-10")).add(zero).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1810,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-5E-10").add(zero).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1814,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-5E-5")).add(zero).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1814,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-5E-5").add(zero).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1818,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-5E-1")).add(zero).toString().equals("-0.5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1818,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-5E-1").add(zero).toString()).equals("-0.5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1821,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-5E-10")).add(zero).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1821,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-5E-10").add(zero).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1825,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-5E-5")).add(zero).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1825,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-5E-5").add(zero).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1829,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-5E-1")).add(zero).toString().equals("-0.5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1829,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-5E-1").add(zero).toString()).equals("-0.5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1832,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-5E10")).add(zero).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1832,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-5E10").add(zero).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1836,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-5E5")).add(zero).toString().equals("-500000"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1836,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-5E5").add(zero).toString()).equals("-500000"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1839,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-5E1")).add(zero).toString().equals("-50"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1839,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-5E1").add(zero).toString()).equals("-50"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1842,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-5E0")).add(zero).toString().equals("-5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1842,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-5E0").add(zero).toString()).equals("-5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1847,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
zero.add(new com.ibm.icu.math.BigDecimal("-56267E-10")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1851,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
zero.add(new com.ibm.icu.math.BigDecimal("-56267E-6")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1855,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
zero.add(new com.ibm.icu.math.BigDecimal("-56267E-5")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1859,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
zero.add(new com.ibm.icu.math.BigDecimal("-56267E-4")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1863,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
zero.add(new com.ibm.icu.math.BigDecimal("-56267E-3")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1867,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
zero.add(new com.ibm.icu.math.BigDecimal("-56267E-2")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1871,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
zero.add(new com.ibm.icu.math.BigDecimal("-56267E-1")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1875,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
zero.add(new com.ibm.icu.math.BigDecimal("-56267E-0")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1879,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
zero.add(new com.ibm.icu.math.BigDecimal("-5E-10")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1883,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
zero.add(new com.ibm.icu.math.BigDecimal("-5E-5")).toString().equals("-0.00005"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1886,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
zero.add(new com.ibm.icu.math.BigDecimal("-5E-1")).toString().equals("-0.5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1889,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
zero.add(new com.ibm.icu.math.BigDecimal("-5E-10")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1893,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
zero.add(new com.ibm.icu.math.BigDecimal("-5E-5")).toString().equals("-0.00005"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1896,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
zero.add(new com.ibm.icu.math.BigDecimal("-5E-1")).toString().equals("-0.5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1899,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
zero.add(new com.ibm.icu.math.BigDecimal("-5E10")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1903,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
zero.add(new com.ibm.icu.math.BigDecimal("-5E5")).toString().equals("-500000"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1906,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
zero.add(new com.ibm.icu.math.BigDecimal("-5E1")).toString().equals("-50"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1909,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
zero.add(new com.ibm.icu.math.BigDecimal("-5E0")).toString().equals("-5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1914,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("00.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1914,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("00.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1920,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.00"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1920,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.00")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1926,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1926,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1932,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3."))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1932,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3.")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1938,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1938,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1944,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3.00"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1944,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3.00")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1950,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1950,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1956,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1956,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1962,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1962,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1968,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.03"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1968,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.03")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1975,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("00.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1975,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("00.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1981,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.00"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1981,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.00")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1987,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1987,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1993,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3."))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1993,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3.")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1999,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[1999,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2005,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3.00"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2005,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3.00")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2011,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2011,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2017,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2017,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2023,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2023,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2029,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2029,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2035,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.03"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2035,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.03")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2041,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("7E+12"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2041,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("7E+12")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2048,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("7E+12"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2048,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("7E+12")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2055,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.11"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2055,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.11")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2063,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("add170", alhs.add(arhs, mc3).toString().equals("2.23E+13"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2064,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("add171", arhs.add(alhs, mc3).toString().equals("2.23E+13"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2067,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12E+3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2067,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12E+3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2074,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12E+3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2074,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12E+3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2080,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12E+3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2080,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12E+3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2086,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12E+3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2086,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12E+3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2093,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3456"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2093,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3456")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2100,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3446"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2100,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3446")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2106,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3454"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2106,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3454")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2112,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3444"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2112,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3444")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2137,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Too many digits:" + " " + tenlong.toString());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2145,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Too many digits:" + " " + tenlong.toString());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2179,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2179,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2184,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2184,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2189,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2189,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2194,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2194,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2199,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2199,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2201,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
== -1);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2204,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2204,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2206,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
== -1);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2209,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2209,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2211,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
== -1);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2214,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2214,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2216,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
== -1);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2237,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Too many digits:" + " " + tenlong.toString());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2245,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Too many digits:" + " " + tenlong.toString());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2265,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2265,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2271,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2271,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2277,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.4"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2277,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.4")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2283,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.4"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2283,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.4")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2289,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-2.4"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2289,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-2.4")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2295,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-2.4"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2295,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-2.4")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2301,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.40"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2301,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.40")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2307,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.400"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2307,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.400")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2313,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.4"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2313,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.4")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2319,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.400"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2319,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.400")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2325,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2."))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2325,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2331,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("20"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2331,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("20")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2337,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("187"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2337,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("187")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2343,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2343,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2349,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2349,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2355,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2355,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2361,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2361,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2367,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("999999999"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2367,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("999999999")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2373,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("999999999.4"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2373,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("999999999.4")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2379,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("999999999.5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2379,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("999999999.5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2385,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("999999999.9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2385,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("999999999.9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2391,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("999999999.999"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2391,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("999999999.999")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2397,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.0000E-50"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2397,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.0000E-50")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2404,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("999999999"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2404,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("999999999")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2410,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("999999999"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2410,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("999999999")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2416,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9999999"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2416,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9999999")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2422,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("999999"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2422,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("999999")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2436,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.50")).divide(one, rmcd).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2436,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.50").divide(one, rmcd).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2440,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.51")).divide(one, rmcd).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2440,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.51").divide(one, rmcd).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2444,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.55")).divide(one, rmcd).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2444,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.55").divide(one, rmcd).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2454,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.55")).divide(one, rmcd).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2454,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.55").divide(one, rmcd).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2458,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.59")).divide(one, rmcd).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2458,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.59").divide(one, rmcd).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2468,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.55")).divide(one, rmcd).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2468,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.55").divide(one, rmcd).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2472,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.59")).divide(one, rmcd).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2472,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.59").divide(one, rmcd).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2482,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.45")).divide(one, rmcd).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2482,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.45").divide(one, rmcd).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2486,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.50")).divide(one, rmcd).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2486,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.50").divide(one, rmcd).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2490,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.55")).divide(one, rmcd).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2490,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.55").divide(one, rmcd).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2500,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.45")).divide(one, rmcd).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2500,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.45").divide(one, rmcd).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2504,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.50")).divide(one, rmcd).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2504,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.50").divide(one, rmcd).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2508,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.55")).divide(one, rmcd).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2508,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.55").divide(one, rmcd).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2518,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.45")).divide(one, rmcd).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2518,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.45").divide(one, rmcd).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2522,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.50")).divide(one, rmcd).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2522,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.50").divide(one, rmcd).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2526,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.55")).divide(one, rmcd).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2526,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.55").divide(one, rmcd).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2536,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.50")).divide(one, rmcd).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2536,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.50").divide(one, rmcd).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2540,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.51")).divide(one, rmcd).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2540,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.51").divide(one, rmcd).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2544,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.55")).divide(one, rmcd).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2544,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.55").divide(one, rmcd).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2550,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2550,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2556,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2556,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2562,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.4"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2562,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.4")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2568,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.4"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2568,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.4")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2574,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-2.4"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2574,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-2.4")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2580,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-2.4"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2580,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-2.4")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2586,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.40"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2586,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.40")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2592,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.400"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2592,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.400")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2598,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.4"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2598,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.4")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2604,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.400"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2604,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.400")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2610,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2."))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2610,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2616,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("20"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2616,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("20")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2622,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("187"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2622,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("187")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2628,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2628,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2634,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2634,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2640,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2640,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2646,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2646,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2652,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2652,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2658,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2658,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2664,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2664,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2670,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2670,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2676,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("999999999"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2676,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("999999999")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2682,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("999999999.4"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2682,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("999999999.4")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2688,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("999999999.5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2688,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("999999999.5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2694,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("999999999.9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2694,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("999999999.9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2700,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("999999999.999"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2700,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("999999999.999")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2706,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.0000E-5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2706,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.0000E-5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2712,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.000000000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2712,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.000000000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2722,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2722,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2728,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2728,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2734,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2734,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2740,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2740,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2746,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2746,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2752,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2752,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2758,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2758,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2764,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2764,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2770,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2770,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2776,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2776,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2782,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2782,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2788,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2788,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2794,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2794,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2800,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2800,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2806,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2806,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2812,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2812,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2818,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2818,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2824,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2824,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2830,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2830,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2836,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2836,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2842,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2842,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2849,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2849,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2855,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2855,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2861,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2861,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2867,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2867,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2873,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2873,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2880,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("100"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2880,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("100")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2886,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("100"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2886,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("100")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2892,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("100"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2892,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("100")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2898,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("100"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2898,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("100")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2904,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("100"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2904,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("100")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2911,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9.99999999"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2911,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9.99999999")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2917,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9.9999999"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2917,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9.9999999")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2923,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9.999999"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2923,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9.999999")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2929,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9.77777777"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2929,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9.77777777")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2935,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9.7777777"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2935,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9.7777777")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2941,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9.777777"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2941,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9.777777")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2947,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9.77777"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2947,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9.77777")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2953,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9.7777"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2953,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9.7777")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2959,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9.777"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2959,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9.777")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2965,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9.77"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2965,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9.77")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2971,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9.7"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2971,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9.7")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2977,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9."))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2977,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9.")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2984,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9.99999999"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2984,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9.99999999")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2990,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9.9999999"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2990,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9.9999999")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2996,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9.999999"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[2996,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9.999999")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3002,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9.77777777"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3002,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9.77777777")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3008,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9.7777777"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3008,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9.7777777")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3014,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9.777777"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3014,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9.777777")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3020,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9.77777"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3020,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9.77777")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3026,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9.7777"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3026,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9.7777")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3032,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9.777"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3032,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9.777")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3038,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9.77"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3038,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9.77")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3044,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9.7"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3044,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9.7")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3050,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9."))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3050,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9.")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3058,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3058,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3064,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3064,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3070,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3070,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3076,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3076,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3082,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3082,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3090,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3090,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3096,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3096,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3102,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3102,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3108,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3108,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3114,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3114,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3120,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3120,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3126,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3126,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3134,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.055"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3134,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.055")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3140,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.055"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3140,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.055")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3146,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.055"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3146,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.055")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3152,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.055"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3152,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.055")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3158,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.055"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3158,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.055")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3164,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.055"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3164,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.055")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3170,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.055"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3170,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.055")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3176,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.055"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3176,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.055")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3182,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.055"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3182,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.055")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3189,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.045"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3189,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.045")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3195,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.045"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3195,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.045")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3201,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.045"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3201,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.045")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3207,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.050"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3207,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.050")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3213,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.050"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3213,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.050")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3219,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.050"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3219,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.050")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3225,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.055"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3225,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.055")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3231,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.055"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3231,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.055")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3237,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.055"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3237,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.055")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3244,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.045"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3244,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.045")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3250,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.045"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3250,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.045")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3256,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.045"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3256,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.045")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3262,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.050"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3262,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.050")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3268,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.050"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3268,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.050")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3274,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.050"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3274,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.050")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3280,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.150"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3280,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.150")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3286,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.150"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3286,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.150")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3292,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.150"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3292,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.150")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3298,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.055"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3298,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.055")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3304,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.055"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3304,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.055")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3310,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.055"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3310,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.055")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3317,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.045"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3317,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.045")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3323,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.045"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3323,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.045")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3329,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.045"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3329,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.045")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3335,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.050"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3335,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.050")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3341,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.050"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3341,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.050")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3347,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.050"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3347,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.050")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3353,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.055"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3353,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.055")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3359,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.055"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3359,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.055")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3365,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.055"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3365,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.055")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3372,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.055"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3372,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.055")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3378,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.055"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3378,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.055")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3384,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.055"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3384,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.055")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3406,12] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3411,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = flag & e.getMessage().equals("Negative scale: -8");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3416,12] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("1000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3424,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Rounding necessary");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3428,12] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("1001")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3436,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Rounding necessary");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3440,12] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("1001")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3448,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Rounding necessary");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3452,12] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10001")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3460,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Rounding necessary");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3464,12] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("1.0001")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3472,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Rounding necessary");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3477,12] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("5").divide(new com.ibm.icu.math.BigDecimal("0.00"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3481,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Divide by 0");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3490,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Too many digits:" + " " + tenlong.toString());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3498,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Too many digits:" + " " + tenlong.toString());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3513,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("101.3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3513,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("101.3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3519,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("101.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3519,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("101.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3525,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("101.3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3525,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("101.3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3531,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("101.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3531,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("101.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3537,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.4"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3537,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.4")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3543,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.400"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3543,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.400")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3549,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("18"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3549,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("18")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3555,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1120"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3555,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1120")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3561,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.4"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3561,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.4")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3567,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.400"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3567,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.400")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3573,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3573,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3579,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("8.005"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3579,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("8.005")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3585,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3585,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3591,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3591,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3597,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.00"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3597,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.00")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3604,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3604,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3610,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3610,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3618,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("101.3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3618,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("101.3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3624,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("101.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3624,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("101.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3630,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("101.3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3630,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("101.3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3636,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("101.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3636,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("101.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3642,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.4"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3642,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.4")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3648,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.400"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3648,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.400")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3654,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("18"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3654,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("18")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3660,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1120"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3660,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1120")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3666,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.4"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3666,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.4")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3672,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.400"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3672,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.400")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3678,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3678,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3684,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("8.005"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3684,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("8.005")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3690,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3690,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3696,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3696,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3702,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.00"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3702,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.00")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3727,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Too many digits:" + " " + tenlong.toString());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3736,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Too many digits:" + " " + tenlong.toString());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3753,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3753,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3759,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3759,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3765,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3765,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3771,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3771,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3777,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3777,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3783,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2E+3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3783,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2E+3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3789,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2E+3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3789,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2E+3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3795,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("7"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3795,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("7")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3801,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("7"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3801,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("7")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3824,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Too many digits:" + " " + tenlong.toString());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3832,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Too many digits:" + " " + tenlong.toString());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3848,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3848,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3854,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3854,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3860,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3860,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3866,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3866,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3872,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3872,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3878,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-2E+3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3878,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-2E+3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3884,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-2E+3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3884,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-2E+3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3890,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("7"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3890,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("7")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3896,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("7"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3896,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("7")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3922,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Too many digits:" + " " + tenlong.toString());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3926,12] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(9).min(tenlong, mcld);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3930,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Too many digits:" + " " + tenlong.toString());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3955,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3955,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3961,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3961,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3967,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3967,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3973,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.20"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3973,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.20")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3979,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.20"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3979,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.20")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3985,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.20"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3985,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.20")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3991,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1.20"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3991,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1.20")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3997,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1.20"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[3997,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1.20")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4003,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1.20"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4003,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1.20")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4009,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5.09"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4009,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5.09")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4015,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4015,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4021,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.50"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4021,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.50")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4027,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.23456789"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4027,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.23456789")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4034,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9.999999999"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4034,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9.999999999")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4041,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.50"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4041,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.50")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4047,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.50"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4047,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.50")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4053,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9.999999999"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4053,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9.999999999")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4060,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4060,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4066,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4066,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4072,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4072,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4078,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.20"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4078,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.20")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4084,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.20"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4084,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.20")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4090,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.20"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4090,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.20")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4096,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1.20"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4096,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1.20")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4102,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1.20"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4102,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1.20")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4108,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1.20"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4108,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1.20")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4114,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5.09"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4114,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5.09")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4120,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4120,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4126,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.50"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4126,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.50")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4132,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.23456789"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4132,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.23456789")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4139,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1234.56789"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4139,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1234.56789")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4146,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1234.56789"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4146,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1234.56789")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4153,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9.999999999"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4153,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9.999999999")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4160,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5.00"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4160,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5.00")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4166,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("00.00"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4166,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("00.00")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4172,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("00.00"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4172,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("00.00")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4179,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("999999999999"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4179,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("999999999999")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4188,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
l9.multiply(new com.ibm.icu.math.BigDecimal("3456757")).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4192,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
l9.multiply(new com.ibm.icu.math.BigDecimal("3456757"), mc3).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4195,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"mul042", l9.multiply(l77e).toString().equals("0.95061727530000000000"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4196,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("mul043", l9.multiply(l77e, mc3).toString().equals("0.947"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4197,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("mul044", l77e.multiply(l9, mc3).toString().equals("0.947"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4202,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
l12345.multiply(new com.ibm.icu.math.BigDecimal("1e11"), mcdef).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4206,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
l12345.multiply(new com.ibm.icu.math.BigDecimal("1e11"), mcs).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4210,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
l12345.multiply(new com.ibm.icu.math.BigDecimal("1e+9"), mce).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4214,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
l12345.multiply(new com.ibm.icu.math.BigDecimal("1e10"), mce).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4218,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
l12345.multiply(new com.ibm.icu.math.BigDecimal("1e11"), mce).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4222,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
l12345.multiply(new com.ibm.icu.math.BigDecimal("1e12"), mce).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4226,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
l12345.multiply(new com.ibm.icu.math.BigDecimal("1e13"), mce).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4232,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
one.multiply(new com.ibm.icu.math.BigDecimal("9e999999999"), mcs).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4236,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
one.multiply(new com.ibm.icu.math.BigDecimal("9.9e999999999"), mcs).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4240,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
one.multiply(new com.ibm.icu.math.BigDecimal("9.99e999999999"), mcs).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4244,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
ten.multiply(new com.ibm.icu.math.BigDecimal("9e999999999"), mce).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4248,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
ten.multiply(new com.ibm.icu.math.BigDecimal("9.9e999999999"), mce).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4252,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("mul065", tenedge.toString().equals("99.990E+999999999"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4254,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("mul066", hunedge.toString().equals("999.900E+999999999"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4258,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
opo.multiply(new com.ibm.icu.math.BigDecimal("9e-999999998"), mcs).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4262,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
opo.multiply(new com.ibm.icu.math.BigDecimal("99e-999999998"), mcs).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4266,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
opo.multiply(new com.ibm.icu.math.BigDecimal("999e-999999998"), mcs).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4271,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
opo.multiply(new com.ibm.icu.math.BigDecimal("9e-999999998"), mce).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4275,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
opo.multiply(new com.ibm.icu.math.BigDecimal("99e-999999998"), mce).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4279,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
opo.multiply(new com.ibm.icu.math.BigDecimal("999e-999999998"), mce).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4283,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
opo.multiply(new com.ibm.icu.math.BigDecimal("999e-999999997"), mce).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4287,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
opo.multiply(new com.ibm.icu.math.BigDecimal("9999e-999999997"), mce).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4291,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
opo.multiply(new com.ibm.icu.math.BigDecimal("99999e-999999997"), mce).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4297,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
opo.multiply(new com.ibm.icu.math.BigDecimal("123456789"), mcs).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4301,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
opo.multiply(new com.ibm.icu.math.BigDecimal("12345678901234"), mcs).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4305,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
opo.multiply(new com.ibm.icu.math.BigDecimal("123456789123456789"), mcs)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4310,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
opo.multiply(new com.ibm.icu.math.BigDecimal("123456789"), mcfd).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4314,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
opo.multiply(new com.ibm.icu.math.BigDecimal("12345678901234"), mcfd).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4318,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
opo.multiply(new com.ibm.icu.math.BigDecimal("123456789123456789"), mcfd)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4324,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("123456789")).multiply(opo, mcs).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4324,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("123456789").multiply(opo, mcs).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4328,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12345678901234")).multiply(opo, mcs).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4328,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12345678901234").multiply(opo, mcs).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4332,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("123456789123456789"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4332,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("123456789123456789")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4338,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("123456789")).multiply(opo, mcfd).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4338,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("123456789").multiply(opo, mcfd).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4342,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12345678901234")).multiply(opo, mcfd).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4342,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12345678901234").multiply(opo, mcfd).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4346,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("123456789123456789"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4346,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("123456789123456789")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4354,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4354,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4360,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4360,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4366,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4366,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4372,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4372,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4378,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4378,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4384,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4384,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4390,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4390,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4396,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4396,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4402,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4402,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4408,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4408,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4414,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4414,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4420,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4420,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4426,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4426,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4432,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4432,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4438,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4438,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4444,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4444,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4450,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4450,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4456,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4456,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4462,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4462,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4468,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4468,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4474,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4474,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4480,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4480,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4486,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4486,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4494,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4494,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4500,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4500,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4506,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4506,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4512,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4512,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4518,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4518,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4524,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4524,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4530,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4530,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4536,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4536,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4542,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4542,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4548,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4548,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4554,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4554,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4560,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4560,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4566,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4566,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4572,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4572,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4578,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4578,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4584,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4584,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4590,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4590,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4596,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4596,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4602,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4602,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4608,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4608,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4614,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4614,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4620,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4620,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4626,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4626,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4654,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = oe.getMessage().equals("Exponent Overflow: 1000000000");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4664,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = oe.getMessage().equals("Exponent Overflow: 1000000002");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4675,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = oe.getMessage().equals("Exponent Overflow: -1000000000");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4686,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = oe.getMessage().equals("Exponent Overflow: -1000000002");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4695,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Too many digits:" + " " + tenlong.toString());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4703,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Too many digits:" + " " + tenlong.toString());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4718,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2")).negate().toString().equals("-2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4718,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2").negate().toString()).equals("-2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4721,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-2")).negate().toString().equals("2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4721,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-2").negate().toString()).equals("2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4724,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.00")).negate(mcdef).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4724,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.00").negate(mcdef).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4728,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-2.00")).negate(mcdef).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4728,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-2.00").negate(mcdef).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4732,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0")).negate(mcdef).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4732,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0").negate(mcdef).toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4735,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.00")).negate(mcdef).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4735,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.00").negate(mcdef).toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4738,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("00.0")).negate(mcdef).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4738,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("00.0").negate(mcdef).toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4741,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("00")).negate(mcdef).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4741,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("00").negate(mcdef).toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4745,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.00")).negate().toString().equals("-2.00"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4745,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.00").negate().toString()).equals("-2.00"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4748,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-2.00")).negate().toString().equals("2.00"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4748,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-2.00").negate().toString()).equals("2.00"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4750,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"neg012", (new com.ibm.icu.math.BigDecimal("0")).negate().toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4750,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"neg012", ( new com.ibm.icu.math.BigDecimal("0").negate().toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4753,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.00")).negate().toString().equals("0.00"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4753,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.00").negate().toString()).equals("0.00"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4756,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("00.0")).negate().toString().equals("0.0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4756,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("00.0").negate().toString()).equals("0.0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4759,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("00.00")).negate().toString().equals("0.00"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4759,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("00.00").negate().toString()).equals("0.00"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4762,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("00")).negate().toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4762,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("00").negate().toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4766,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-2000000")).negate().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4766,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-2000000").negate().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4770,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-2000000")).negate(mcdef).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4770,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-2000000").negate(mcdef).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4774,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-2000000")).negate(mc6).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4774,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-2000000").negate(mc6).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4778,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2000000")).negate(mc6).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4778,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2000000").negate(mc6).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4794,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Too many digits:" + " " + tenlong.toString());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4810,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2")).plus(mcdef).toString().equals("2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4810,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2").plus(mcdef).toString()).equals("2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4813,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-2")).plus(mcdef).toString().equals("-2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4813,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-2").plus(mcdef).toString()).equals("-2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4816,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.00")).plus(mcdef).toString().equals("2.00"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4816,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.00").plus(mcdef).toString()).equals("2.00"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4819,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-2.00")).plus(mcdef).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4819,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-2.00").plus(mcdef).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4823,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0")).plus(mcdef).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4823,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0").plus(mcdef).toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4826,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.00")).plus(mcdef).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4826,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.00").plus(mcdef).toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4829,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("00.0")).plus(mcdef).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4829,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("00.0").plus(mcdef).toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4832,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("00")).plus(mcdef).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4832,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("00").plus(mcdef).toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4835,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"plu010", (new com.ibm.icu.math.BigDecimal("2")).plus().toString().equals("2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4835,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"plu010", ( new com.ibm.icu.math.BigDecimal("2").plus().toString()).equals("2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4837,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"plu011", (new com.ibm.icu.math.BigDecimal("-2")).plus().toString().equals("-2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4837,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"plu011", ( new com.ibm.icu.math.BigDecimal("-2").plus().toString()).equals("-2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4840,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.00")).plus().toString().equals("2.00"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4840,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.00").plus().toString()).equals("2.00"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4843,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-2.00")).plus().toString().equals("-2.00"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4843,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-2.00").plus().toString()).equals("-2.00"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4845,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"plu014", (new com.ibm.icu.math.BigDecimal("0")).plus().toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4845,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"plu014", ( new com.ibm.icu.math.BigDecimal("0").plus().toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4848,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.00")).plus().toString().equals("0.00"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4848,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.00").plus().toString()).equals("0.00"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4851,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("00.0")).plus().toString().equals("0.0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4851,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("00.0").plus().toString()).equals("0.0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4854,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("00.00")).plus().toString().equals("0.00"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4854,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("00.00").plus().toString()).equals("0.00"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4856,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"plu018", (new com.ibm.icu.math.BigDecimal("00")).plus().toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4856,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"plu018", ( new com.ibm.icu.math.BigDecimal("00").plus().toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4860,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-2000000")).plus().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4860,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-2000000").plus().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4864,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-2000000")).plus(mcdef).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4864,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-2000000").plus(mcdef).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4868,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-2000000")).plus(mc6).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4868,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-2000000").plus(mc6).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4872,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2000000")).plus(mc6).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4872,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2000000").plus(mc6).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4885,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.24")).plus(mche1).toString().equals("0.2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4885,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.24").plus(mche1).toString()).equals("0.2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4888,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.25")).plus(mche1).toString().equals("0.2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4888,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.25").plus(mche1).toString()).equals("0.2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4891,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.26")).plus(mche1).toString().equals("0.3"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4891,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.26").plus(mche1).toString()).equals("0.3"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4894,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.14")).plus(mche1).toString().equals("0.1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4894,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.14").plus(mche1).toString()).equals("0.1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4897,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.15")).plus(mche1).toString().equals("0.2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4897,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.15").plus(mche1).toString()).equals("0.2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4900,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.16")).plus(mche1).toString().equals("0.2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4900,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.16").plus(mche1).toString()).equals("0.2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4904,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.251")).plus(mche1).toString().equals("0.3"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4904,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.251").plus(mche1).toString()).equals("0.3"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4907,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.151")).plus(mche1).toString().equals("0.2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4907,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.151").plus(mche1).toString()).equals("0.2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4911,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-0.24")).plus(mche1).toString().equals("-0.2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4911,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-0.24").plus(mche1).toString()).equals("-0.2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4914,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-0.25")).plus(mche1).toString().equals("-0.2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4914,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-0.25").plus(mche1).toString()).equals("-0.2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4917,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-0.26")).plus(mche1).toString().equals("-0.3"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4917,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-0.26").plus(mche1).toString()).equals("-0.3"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4920,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-0.14")).plus(mche1).toString().equals("-0.1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4920,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-0.14").plus(mche1).toString()).equals("-0.1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4923,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-0.15")).plus(mche1).toString().equals("-0.2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4923,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-0.15").plus(mche1).toString()).equals("-0.2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4926,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-0.16")).plus(mche1).toString().equals("-0.2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4926,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-0.16").plus(mche1).toString()).equals("-0.2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4931,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-56267E-10")).plus().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4931,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-56267E-10").plus().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4935,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-56267E-5")).plus().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4935,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-56267E-5").plus().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4939,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-56267E-2")).plus().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4939,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-56267E-2").plus().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4943,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-56267E-1")).plus().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4943,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-56267E-1").plus().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4947,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-56267E-0")).plus().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4947,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-56267E-0").plus().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4963,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Too many digits:" + " " + tenlong.toString());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4985,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("0.3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4992,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("0.3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[4999,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("0.3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5006,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("0.3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5013,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("0.3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5018,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"1E-8"
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5020,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5025,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"1E-7"
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5027,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5034,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5041,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5048,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5055,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5062,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5069,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5076,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5083,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5090,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5095,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"1E+9"
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5097,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5102,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"1E+99"
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5104,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5109,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"1E+999999999"
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5111,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5116,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"1E+999999998"
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5118,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5123,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"1E+999999997"
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5125,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5130,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"1E+333333333"
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5132,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5137,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"1E-333333333"
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5139,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5144,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"1E-999999998"
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5146,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5151,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"1E-999999999"
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5153,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5160,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5167,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5174,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5180,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5180,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5186,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5186,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5192,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5192,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5198,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5198,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5204,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5204,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5210,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5210,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5216,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5216,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5222,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5222,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5228,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5228,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5234,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5234,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5240,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5240,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5246,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5246,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5252,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5252,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5258,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5258,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5264,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5264,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5270,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5270,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5276,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5276,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5282,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5282,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5288,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("6.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5288,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("6.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5294,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5294,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5300,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5300,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5320,34] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
& x.pow(new com.ibm.icu.math.BigDecimal(n), mcdef).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5335,34] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
& x.pow(new com.ibm.icu.math.BigDecimal(n), mcdef).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5339,34] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
& x.pow(new com.ibm.icu.math.BigDecimal(-n), mcdef).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5357,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("pow090", vx.pow(vn, mc3).toString().equals("8.74E-2226"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5364,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("0.3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5371,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("0.3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5378,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("0.3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5385,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("0.3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5392,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("0.3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5399,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5406,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5413,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5420,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5427,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5434,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5441,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5448,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5455,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("1.01")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5461,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5461,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5467,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5467,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5473,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5473,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5479,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5479,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5485,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5485,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5491,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5491,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5497,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5497,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5503,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5503,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5509,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("6.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5509,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("6.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5515,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("6.00"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5515,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("6.00")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5521,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("6.000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5521,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("6.000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5527,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5527,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5533,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5533,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5561,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Too many digits:" + " " + tenlong.toString());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5570,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Too many digits:" + " " + tenlong.toString());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5579,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Negative power: -71");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5588,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Too many digits: 1234");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5597,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Too many digits: 1.234E+3");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5606,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Decimal part non-zero: 12.4");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5615,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Decimal part non-zero: 1.01");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5625,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Decimal part non-zero: 1.000000001");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5635,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Decimal part non-zero: 1.000000001");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5645,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Decimal part non-zero: 5.67E-987654321");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5660,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5660,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5666,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5666,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5672,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("13"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5672,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("13")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5678,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("13"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5678,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("13")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5684,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("13"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5684,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("13")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5690,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("13"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5690,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("13")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5696,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(".13")).remainder(one).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5696,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(".13").remainder(one).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5700,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.133")).remainder(one).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5700,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.133").remainder(one).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5704,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.1033")).remainder(one).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5704,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.1033").remainder(one).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5708,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.033")).remainder(one).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5708,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.033").remainder(one).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5712,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10.33")).remainder(one).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5712,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10.33").remainder(one).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5716,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10.33"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5716,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10.33")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5722,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("103.3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5722,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("103.3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5728,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("133"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5728,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("133")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5734,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1033"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5734,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1033")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5740,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1033"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5740,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1033")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5746,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("101.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5746,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("101.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5752,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("102.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5752,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("102.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5758,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("103.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5758,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("103.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5764,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.40")).remainder(one).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5764,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.40").remainder(one).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5768,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.400")).remainder(one).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5768,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.400").remainder(one).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5772,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.4")).remainder(one).toString().equals("0.4"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5772,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.4").remainder(one).toString()).equals("0.4"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5775,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.4"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5775,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.4")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5781,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.400"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5781,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.400")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5787,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5787,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5793,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5793,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5799,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5799,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5805,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5805,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5811,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5811,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5817,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.00"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5817,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.00")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5823,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5823,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5829,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.0000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5829,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.0000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5835,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5835,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5842,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5842,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5848,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5848,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5854,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5854,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5860,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5860,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5866,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5866,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5872,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5872,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5878,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5878,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5884,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5884,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5890,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5890,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5896,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5896,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5903,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.03"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5903,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.03")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5909,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5909,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5915,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("4.1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5915,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("4.1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5921,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("4.01"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5921,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("4.01")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5927,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("4.001"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5927,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("4.001")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5933,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("4.0001"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5933,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("4.0001")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5939,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("4.00001"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5939,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("4.00001")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5945,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("4.000001"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5945,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("4.000001")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5951,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("4.0000001"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5951,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("4.0000001")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5958,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5958,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5964,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.8"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5964,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.8")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5970,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.8"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5970,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.8")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5976,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.8"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5976,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.8")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5982,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.800"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5982,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.800")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5988,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.800"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5988,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.800")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5994,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.400"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[5994,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.400")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6002,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.400"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6002,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.400")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6008,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12345678900000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6008,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12345678900000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6016,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6016,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6022,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6022,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6028,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("13"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6028,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("13")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6034,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("13"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6034,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("13")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6040,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("13"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6040,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("13")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6046,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("13"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6046,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("13")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6052,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(".13")).remainder(one).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6052,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(".13").remainder(one).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6056,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.133")).remainder(one).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6056,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.133").remainder(one).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6060,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.1033")).remainder(one).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6060,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.1033").remainder(one).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6064,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.033")).remainder(one).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6064,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.033").remainder(one).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6068,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10.33")).remainder(one).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6068,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10.33").remainder(one).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6072,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10.33"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6072,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10.33")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6078,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("103.3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6078,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("103.3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6084,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("133"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6084,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("133")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6090,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1033"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6090,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1033")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6096,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1033"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6096,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1033")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6102,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("101.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6102,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("101.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6108,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("102.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6108,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("102.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6114,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("103.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6114,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("103.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6120,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.40")).remainder(one).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6120,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.40").remainder(one).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6124,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.400")).remainder(one).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6124,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.400").remainder(one).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6128,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.4")).remainder(one).toString().equals("0.4"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6128,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.4").remainder(one).toString()).equals("0.4"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6131,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.4"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6131,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.4")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6137,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.400"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6137,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.400")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6143,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6143,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6149,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6149,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6155,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6155,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6161,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6161,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6167,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6167,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6173,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.00"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6173,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.00")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6179,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6179,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6185,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.0000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6185,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.0000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6191,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6191,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6197,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6197,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6203,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6203,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6209,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.03"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6209,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.03")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6215,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6215,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6221,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("4.1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6221,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("4.1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6227,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("4.01"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6227,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("4.01")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6233,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("4.001"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6233,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("4.001")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6239,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("4.0001"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6239,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("4.0001")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6245,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("4.00001"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6245,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("4.00001")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6251,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("4.000001"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6251,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("4.000001")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6257,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("4.0000001"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6257,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("4.0000001")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6263,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6263,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6269,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.8"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6269,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.8")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6275,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.8"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6275,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.8")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6281,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.8"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6281,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.8")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6287,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.800"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6287,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.800")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6293,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.800"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6293,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.800")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6299,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("2.400"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6299,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("2.400")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6324,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Too many digits:" + " " + tenlong.toString());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6333,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Too many digits:" + " " + tenlong.toString());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6351,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(2))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6351,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(2)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6357,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5.75"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6357,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5.75")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6363,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6363,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6369,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6369,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6375,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-7"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6375,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-7")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6381,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.7"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6381,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.7")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6387,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6387,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6393,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.25"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6393,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.25")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6399,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.23456789"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6399,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.23456789")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6406,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.23456789"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6406,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.23456789")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6413,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5555555559"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6413,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5555555559")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6420,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5555555559"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6420,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5555555559")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6427,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.4444444444"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6427,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.4444444444")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6434,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.0000000000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6434,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.0000000000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6441,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.4444444444999"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6441,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.4444444444999")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6448,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.4444444445000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6448,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.4444444445000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6455,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("70"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6455,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("70")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6462,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("700"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6462,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("700")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6469,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("7000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6469,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("7000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6476,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("70000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6476,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("70000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6483,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("700000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6483,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("700000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6491,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10000e+9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6491,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10000e+9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6498,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10000e+9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6498,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10000e+9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6505,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10000e+9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6505,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10000e+9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6512,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10000e+9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6512,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10000e+9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6519,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10000e+9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6519,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10000e+9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6527,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(2))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6527,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(2)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6533,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5.75"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6533,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5.75")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6539,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6539,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6545,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-5"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6545,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-5")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6551,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-7"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6551,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-7")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6557,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.7"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6557,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.7")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6563,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6563,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6569,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.25"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6569,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.25")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6575,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.02"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6575,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.02")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6582,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.23456789"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6582,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.23456789")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6589,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.23456789"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6589,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.23456789")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6596,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5555555559"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6596,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5555555559")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6603,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5555555559"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6603,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5555555559")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6610,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.4444444444"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6610,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.4444444444")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6617,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.0000000000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6617,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.0000000000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6624,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.4444444444999"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6624,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.4444444444999")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6631,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.4444444445000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6631,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.4444444445000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6638,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("70"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6638,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("70")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6645,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("700"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6645,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("700")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6652,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("7000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6652,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("7000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6659,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("70000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6659,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("70000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6666,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("700000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6666,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("700000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6674,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10000e+9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6674,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10000e+9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6681,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10000e+9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6681,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10000e+9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6688,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10000e+9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6688,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10000e+9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6695,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10000e+9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6695,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10000e+9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6702,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10000e+9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6702,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10000e+9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6710,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10000e+9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6710,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10000e+9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6717,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10000e+9"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6717,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10000e+9")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6725,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("00.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6725,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("00.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6731,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("00.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6731,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("00.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6737,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.00"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6737,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.00")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6743,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("00.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6743,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("00.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6749,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.00"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6749,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.00")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6755,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6755,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6761,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3."))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6761,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3.")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6767,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6767,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6773,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3.00"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6773,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3.00")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6779,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6779,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6785,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6785,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6791,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6791,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6797,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6797,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6803,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3."))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6803,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3.")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6809,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6809,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6815,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3.00"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6815,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3.00")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6821,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6821,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6827,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6827,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6833,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6833,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6843,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"-1E-7"
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6845,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10.23456784")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6854,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10.23456785")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6863,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10.23456786")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6872,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10.23456787")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6881,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10.23456788")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6890,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10.23456789")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6899,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10.23456790")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6908,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10.23456791")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6917,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10.23456792")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6926,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10.23456793")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6935,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10.23456794")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6942,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"-1E-7"
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6944,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10.23456781")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6951,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"-1E-7"
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6953,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10.23456782")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6960,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"-1E-7"
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6962,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10.23456783")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6969,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"-1E-7"
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6971,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10.23456784")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6980,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10.23456785")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6989,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10.23456786")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[6998,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10.23456787")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7007,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10.23456788")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7016,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10.23456789")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7025,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10.23456790")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7034,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("10.23456791")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7052,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal("0.999999999")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7058,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sub110", alhs.subtract(arhs, mc3).toString().equals("2.3E+12"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7059,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sub111", arhs.subtract(alhs, mc3).toString().equals("-2.3E+12"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7060,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sub112", alhs.subtract(arhs).toString().equals("2345678900001"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7061,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sub113", arhs.subtract(alhs).toString().equals("-2345678900001"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7066,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7066,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7072,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("00"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7072,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("00")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7078,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7078,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7084,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7084,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7090,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7090,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7096,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7096,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7102,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7102,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7108,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7108,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7114,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(".0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7114,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(".0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7120,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("00"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7120,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("00")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7126,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7126,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7132,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7132,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7138,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7138,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7144,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7144,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7150,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(".0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7150,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(".0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7157,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7157,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7163,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.00"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7163,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.00")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7169,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7169,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7175,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7175,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7181,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7181,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7187,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7187,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7193,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7193,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7199,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7199,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7205,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7205,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7211,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.00"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7211,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.00")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7217,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7217,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7223,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7223,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7229,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7229,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7235,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7235,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7241,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7241,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7248,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7248,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7254,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("00"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7254,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("00")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7260,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7260,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7266,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7266,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7272,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7272,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7278,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7278,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7284,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7284,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7290,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7290,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7296,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(".0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7296,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(".0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7302,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("00"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7302,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("00")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7308,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7308,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7314,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7314,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7320,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7320,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7326,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7326,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7332,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(".0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7332,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(".0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7340,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-56267E-10")).subtract(zero).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7340,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-56267E-10").subtract(zero).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7344,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-56267E-5")).subtract(zero).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7344,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-56267E-5").subtract(zero).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7348,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-56267E-2")).subtract(zero).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7348,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-56267E-2").subtract(zero).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7352,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-56267E-1")).subtract(zero).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7352,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-56267E-1").subtract(zero).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7356,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-56267E-0")).subtract(zero).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7356,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-56267E-0").subtract(zero).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7379,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Too many digits:" + " " + tenlong.toString());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7387,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Too many digits:" + " " + tenlong.toString());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7410,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(((byte) -128)) == ((new com.ibm.icu.math.BigDecimal("-128")).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7410,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( ((byte) -128)) == ((new com.ibm.icu.math.BigDecimal("-128")).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7410,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
((((byte) -128))) == (new com.ibm.icu.math.BigDecimal("-128")).byteValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7410,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
((((byte) -128))) == ( new com.ibm.icu.math.BigDecimal("-128").byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7412,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv002", (0) == ((new com.ibm.icu.math.BigDecimal("0")).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7412,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv002", ( 0) == ((new com.ibm.icu.math.BigDecimal("0")).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7412,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv002", ((0)) == (new com.ibm.icu.math.BigDecimal("0")).byteValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7412,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv002", ((0)) == ( new com.ibm.icu.math.BigDecimal("0").byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7414,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv003", (1) == ((new com.ibm.icu.math.BigDecimal("1")).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7414,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv003", ( 1) == ((new com.ibm.icu.math.BigDecimal("1")).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7414,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv003", ((1)) == (new com.ibm.icu.math.BigDecimal("1")).byteValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7414,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv003", ((1)) == ( new com.ibm.icu.math.BigDecimal("1").byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7416,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv004", (99) == ((new com.ibm.icu.math.BigDecimal("99")).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7416,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv004", ( 99) == ((new com.ibm.icu.math.BigDecimal("99")).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7416,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv004", ((99)) == (new com.ibm.icu.math.BigDecimal("99")).byteValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7416,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv004", ((99)) == ( new com.ibm.icu.math.BigDecimal("99").byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7418,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv005", (127) == ((new com.ibm.icu.math.BigDecimal("127")).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7418,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv005", ( 127) == ((new com.ibm.icu.math.BigDecimal("127")).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7418,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv005", ((127)) == (new com.ibm.icu.math.BigDecimal("127")).byteValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7418,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv005", ((127)) == ( new com.ibm.icu.math.BigDecimal("127").byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7420,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv006", (-128) == ((new com.ibm.icu.math.BigDecimal("128")).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7420,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv006", ( -128) == ((new com.ibm.icu.math.BigDecimal("128")).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7420,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv006", ((-128)) == (new com.ibm.icu.math.BigDecimal("128")).byteValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7420,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv006", ((-128)) == ( new com.ibm.icu.math.BigDecimal("128").byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7422,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv007", (-127) == ((new com.ibm.icu.math.BigDecimal("129")).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7422,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv007", ( -127) == ((new com.ibm.icu.math.BigDecimal("129")).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7422,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv007", ((-127)) == (new com.ibm.icu.math.BigDecimal("129")).byteValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7422,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv007", ((-127)) == ( new com.ibm.icu.math.BigDecimal("129").byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7424,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv008", (127) == ((new com.ibm.icu.math.BigDecimal("-129")).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7424,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv008", ( 127) == ((new com.ibm.icu.math.BigDecimal("-129")).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7424,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv008", ((127)) == (new com.ibm.icu.math.BigDecimal("-129")).byteValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7424,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv008", ((127)) == ( new com.ibm.icu.math.BigDecimal("-129").byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7426,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv009", (126) == ((new com.ibm.icu.math.BigDecimal("-130")).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7426,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv009", ( 126) == ((new com.ibm.icu.math.BigDecimal("-130")).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7426,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv009", ((126)) == (new com.ibm.icu.math.BigDecimal("-130")).byteValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7426,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv009", ((126)) == ( new com.ibm.icu.math.BigDecimal("-130").byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7428,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv010", (bmax) == ((new com.ibm.icu.math.BigDecimal(bmax)).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7428,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv010", ( bmax) == ((new com.ibm.icu.math.BigDecimal(bmax)).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7428,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv010", ((bmax)) == (new com.ibm.icu.math.BigDecimal(bmax)).byteValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7428,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv010", ((bmax)) == ( new com.ibm.icu.math.BigDecimal(bmax).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7430,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv011", (bmin) == ((new com.ibm.icu.math.BigDecimal(bmin)).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7430,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv011", ( bmin) == ((new com.ibm.icu.math.BigDecimal(bmin)).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7430,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv011", ((bmin)) == (new com.ibm.icu.math.BigDecimal(bmin)).byteValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7430,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv011", ((bmin)) == ( new com.ibm.icu.math.BigDecimal(bmin).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7432,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv012", (bneg) == ((new com.ibm.icu.math.BigDecimal(bneg)).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7432,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv012", ( bneg) == ((new com.ibm.icu.math.BigDecimal(bneg)).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7432,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv012", ((bneg)) == (new com.ibm.icu.math.BigDecimal(bneg)).byteValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7432,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv012", ((bneg)) == ( new com.ibm.icu.math.BigDecimal(bneg).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7434,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv013", (bzer) == ((new com.ibm.icu.math.BigDecimal(bzer)).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7434,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv013", ( bzer) == ((new com.ibm.icu.math.BigDecimal(bzer)).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7434,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv013", ((bzer)) == (new com.ibm.icu.math.BigDecimal(bzer)).byteValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7434,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv013", ((bzer)) == ( new com.ibm.icu.math.BigDecimal(bzer).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7436,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv014", (bpos) == ((new com.ibm.icu.math.BigDecimal(bpos)).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7436,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv014", ( bpos) == ((new com.ibm.icu.math.BigDecimal(bpos)).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7436,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv014", ((bpos)) == (new com.ibm.icu.math.BigDecimal(bpos)).byteValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7436,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv014", ((bpos)) == ( new com.ibm.icu.math.BigDecimal(bpos).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7438,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv015", (bmin) == ((new com.ibm.icu.math.BigDecimal(bmax + 1)).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7438,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv015", ( bmin) == ((new com.ibm.icu.math.BigDecimal(bmax + 1)).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7438,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv015", ((bmin)) == (new com.ibm.icu.math.BigDecimal(bmax + 1)).byteValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7438,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv015", ((bmin)) == ( new com.ibm.icu.math.BigDecimal(bmax + 1).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7440,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv016", (bmax) == ((new com.ibm.icu.math.BigDecimal(bmin - 1)).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7440,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv016", ( bmax) == ((new com.ibm.icu.math.BigDecimal(bmin - 1)).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7440,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv016", ((bmax)) == (new com.ibm.icu.math.BigDecimal(bmin - 1)).byteValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7440,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv016", ((bmax)) == ( new com.ibm.icu.math.BigDecimal(bmin - 1).byteValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7444,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(((byte) -128)) == ((new com.ibm.icu.math.BigDecimal("-128")).byteValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7444,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( ((byte) -128)) == ((new com.ibm.icu.math.BigDecimal("-128")).byteValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7444,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
((((byte) -128))) == (new com.ibm.icu.math.BigDecimal("-128")).byteValueExact());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7444,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
((((byte) -128))) == ( new com.ibm.icu.math.BigDecimal("-128").byteValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7446,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv022", (0) == ((new com.ibm.icu.math.BigDecimal("0")).byteValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7446,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv022", ( 0) == ((new com.ibm.icu.math.BigDecimal("0")).byteValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7446,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv022", ((0)) == (new com.ibm.icu.math.BigDecimal("0")).byteValueExact());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7446,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv022", ((0)) == ( new com.ibm.icu.math.BigDecimal("0").byteValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7448,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv023", (1) == ((new com.ibm.icu.math.BigDecimal("1")).byteValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7448,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv023", ( 1) == ((new com.ibm.icu.math.BigDecimal("1")).byteValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7448,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv023", ((1)) == (new com.ibm.icu.math.BigDecimal("1")).byteValueExact());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7448,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv023", ((1)) == ( new com.ibm.icu.math.BigDecimal("1").byteValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7450,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv024", (99) == ((new com.ibm.icu.math.BigDecimal("99")).byteValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7450,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv024", ( 99) == ((new com.ibm.icu.math.BigDecimal("99")).byteValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7450,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv024", ((99)) == (new com.ibm.icu.math.BigDecimal("99")).byteValueExact());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7450,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv024", ((99)) == ( new com.ibm.icu.math.BigDecimal("99").byteValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7452,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv025", (127) == ((new com.ibm.icu.math.BigDecimal("127")).byteValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7452,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv025", ( 127) == ((new com.ibm.icu.math.BigDecimal("127")).byteValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7452,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv025", ((127)) == (new com.ibm.icu.math.BigDecimal("127")).byteValueExact());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7452,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv025", ((127)) == ( new com.ibm.icu.math.BigDecimal("127").byteValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7454,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv026", (bmax) == ((new com.ibm.icu.math.BigDecimal(bmax)).byteValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7454,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv026", ( bmax) == ((new com.ibm.icu.math.BigDecimal(bmax)).byteValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7454,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv026", ((bmax)) == (new com.ibm.icu.math.BigDecimal(bmax)).byteValueExact());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7454,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv026", ((bmax)) == ( new com.ibm.icu.math.BigDecimal(bmax).byteValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7456,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv027", (bmin) == ((new com.ibm.icu.math.BigDecimal(bmin)).byteValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7456,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv027", ( bmin) == ((new com.ibm.icu.math.BigDecimal(bmin)).byteValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7456,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv027", ((bmin)) == (new com.ibm.icu.math.BigDecimal(bmin)).byteValueExact());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7456,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv027", ((bmin)) == ( new com.ibm.icu.math.BigDecimal(bmin).byteValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7458,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv028", (bneg) == ((new com.ibm.icu.math.BigDecimal(bneg)).byteValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7458,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv028", ( bneg) == ((new com.ibm.icu.math.BigDecimal(bneg)).byteValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7458,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv028", ((bneg)) == (new com.ibm.icu.math.BigDecimal(bneg)).byteValueExact());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7458,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv028", ((bneg)) == ( new com.ibm.icu.math.BigDecimal(bneg).byteValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7460,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv029", (bzer) == ((new com.ibm.icu.math.BigDecimal(bzer)).byteValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7460,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv029", ( bzer) == ((new com.ibm.icu.math.BigDecimal(bzer)).byteValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7460,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv029", ((bzer)) == (new com.ibm.icu.math.BigDecimal(bzer)).byteValueExact());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7460,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv029", ((bzer)) == ( new com.ibm.icu.math.BigDecimal(bzer).byteValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7462,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv030", (bpos) == ((new com.ibm.icu.math.BigDecimal(bpos)).byteValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7462,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv030", ( bpos) == ((new com.ibm.icu.math.BigDecimal(bpos)).byteValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7462,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv030", ((bpos)) == (new com.ibm.icu.math.BigDecimal(bpos)).byteValueExact());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7462,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"byv030", ((bpos)) == ( new com.ibm.icu.math.BigDecimal(bpos).byteValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7465,12] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(v).byteValueExact();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7469,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Conversion overflow:" + " " + v);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7474,12] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(v).byteValueExact();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7478,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Conversion overflow:" + " " + v);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7483,12] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(v).byteValueExact();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7487,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Decimal part non-zero:" + " " + v);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7494,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(bmax).add(one).toString(),
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7495,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(bmin).subtract(one).toString(),
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7514,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(bmin).multiply(two).toString(),
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7515,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(bmax).multiply(two).toString(),
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7516,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(bmin).multiply(ten).toString(),
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7517,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(bmax).multiply(ten).toString(),
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7551,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(v).byteValueExact();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7555,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
norm = new com.ibm.icu.math.BigDecimal(v).toString();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7556,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Conversion overflow:" + " " + norm);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7616,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(val)).doubleValue()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7616,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(val).doubleValue())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7617,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
== (Double.valueOf(val)).doubleValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7617,28] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
== ( Double.valueOf(val).doubleValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7621,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(val)).doubleValue()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7621,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(val).doubleValue())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7622,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
== (Double.valueOf(val)).doubleValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7622,28] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
== ( Double.valueOf(val).doubleValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7626,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(val)).doubleValue()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7626,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(val).doubleValue())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7627,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
== (Double.valueOf(val)).doubleValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7627,28] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
== ( Double.valueOf(val).doubleValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7631,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(val)).doubleValue()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7631,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(val).doubleValue())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7632,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
== (Double.valueOf(val)).doubleValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7632,28] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
== ( Double.valueOf(val).doubleValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7636,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(val)).doubleValue()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7636,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(val).doubleValue())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7637,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
== (Double.valueOf(val)).doubleValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7637,28] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
== ( Double.valueOf(val).doubleValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7641,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(val)).doubleValue()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7641,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(val).doubleValue())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7646,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(val)).doubleValue()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7646,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(val).doubleValue())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7657,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("equ001", !(d.equals((java.lang.Object) null)));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7657,40] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("equ001", (! d.equals((java.lang.Object) null)));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7658,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("equ002", !(d.equals("foo")));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7658,40] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("equ002", (! d.equals("foo")));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7659,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("equ003", !(d.equals((new com.ibm.icu.math.BigDecimal(66)))));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7659,40] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("equ003", (! d.equals((new com.ibm.icu.math.BigDecimal(66)))));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7659,50] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("equ003", (!(d.equals( new com.ibm.icu.math.BigDecimal(66)))));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7664,24] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(10))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7664,25] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(10)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7678,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(val)).floatValue()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7678,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(val).floatValue())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7679,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
== Float.valueOf(val).floatValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7683,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(val)).floatValue()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7683,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(val).floatValue())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7684,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
== Float.valueOf(val).floatValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7688,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(val)).floatValue()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7688,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(val).floatValue())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7689,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
== Float.valueOf(val).floatValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7693,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(val)).floatValue()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7693,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(val).floatValue())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7694,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
== Float.valueOf(val).floatValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7698,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(val)).floatValue()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7698,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(val).floatValue())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7699,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
== Float.valueOf(val).floatValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7703,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(val)).floatValue() == Float.POSITIVE_INFINITY);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7703,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(val).floatValue()) == Float.POSITIVE_INFINITY);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7707,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(val)).floatValue() == Float.NEGATIVE_INFINITY);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7707,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(val).floatValue()) == Float.NEGATIVE_INFINITY);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7711,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(val)).floatValue() == Float.POSITIVE_INFINITY);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7711,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(val).floatValue()) == Float.POSITIVE_INFINITY);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7715,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal(val)).floatValue() == Float.NEGATIVE_INFINITY);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7715,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal(val).floatValue()) == Float.NEGATIVE_INFINITY);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7745,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12.3")).format(-1, -1).equals("12.3"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7745,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12.3").format(-1, -1)).equals("12.3"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7748,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-12.73")).format(-1, -1).equals("-12.73"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7748,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-12.73").format(-1, -1)).equals("-12.73"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7751,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.000")).format(-1, -1).equals("0.000"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7751,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.000").format(-1, -1)).equals("0.000"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7754,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3E+3")).format(-1, -1).equals("3000"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7754,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3E+3").format(-1, -1)).equals("3000"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7756,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"for005", (new com.ibm.icu.math.BigDecimal("3")).format(4, -1).equals(" 3"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7756,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"for005", ( new com.ibm.icu.math.BigDecimal("3").format(4, -1)).equals(" 3"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7758,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"for006", (new com.ibm.icu.math.BigDecimal("1.73")).format(4, 0).equals(" 2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7758,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"for006", ( new com.ibm.icu.math.BigDecimal("1.73").format(4, 0)).equals(" 2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7761,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.73")).format(4, 1).equals(" 1.7"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7761,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.73").format(4, 1)).equals(" 1.7"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7764,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.75")).format(4, 1).equals(" 1.8"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7764,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.75").format(4, 1)).equals(" 1.8"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7766,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"for009", (new com.ibm.icu.math.BigDecimal("0.5")).format(4, 1).equals(" 0.5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7766,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"for009", ( new com.ibm.icu.math.BigDecimal("0.5").format(4, 1)).equals(" 0.5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7769,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.05")).format(4, 1).equals(" 0.1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7769,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.05").format(4, 1)).equals(" 0.1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7772,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.04")).format(4, 1).equals(" 0.0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7772,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.04").format(4, 1)).equals(" 0.0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7774,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"for012", (new com.ibm.icu.math.BigDecimal("0")).format(4, 0).equals(" 0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7774,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"for012", ( new com.ibm.icu.math.BigDecimal("0").format(4, 0)).equals(" 0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7776,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"for013", (new com.ibm.icu.math.BigDecimal("0")).format(4, 1).equals(" 0.0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7776,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"for013", ( new com.ibm.icu.math.BigDecimal("0").format(4, 1)).equals(" 0.0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7778,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"for014", (new com.ibm.icu.math.BigDecimal("0")).format(4, 2).equals(" 0.00"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7778,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"for014", ( new com.ibm.icu.math.BigDecimal("0").format(4, 2)).equals(" 0.00"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7780,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"for015", (new com.ibm.icu.math.BigDecimal("0")).format(4, 3).equals(" 0.000"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7780,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"for015", ( new com.ibm.icu.math.BigDecimal("0").format(4, 3)).equals(" 0.000"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7783,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0")).format(4, 4).equals(" 0.0000"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7783,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0").format(4, 4)).equals(" 0.0000"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7785,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"for017", (new com.ibm.icu.math.BigDecimal("0.005")).format(4, 0).equals(" 0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7785,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"for017", ( new com.ibm.icu.math.BigDecimal("0.005").format(4, 0)).equals(" 0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7788,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.005")).format(4, 1).equals(" 0.0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7788,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.005").format(4, 1)).equals(" 0.0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7791,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.005")).format(4, 2).equals(" 0.01"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7791,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.005").format(4, 2)).equals(" 0.01"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7794,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.004")).format(4, 2).equals(" 0.00"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7794,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.004").format(4, 2)).equals(" 0.00"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7797,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.005")).format(4, 3).equals(" 0.005"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7797,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.005").format(4, 3)).equals(" 0.005"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7800,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.005")).format(4, 4).equals(" 0.0050"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7800,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.005").format(4, 4)).equals(" 0.0050"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7804,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.73")).format(4, 2).equals(" 1.73"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7804,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.73").format(4, 2)).equals(" 1.73"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7807,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.73")).format(4, 3).equals(" 1.730"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7807,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.73").format(4, 3)).equals(" 1.730"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7810,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-.76")).format(4, 1).equals(" -0.8"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7810,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-.76").format(4, 1)).equals(" -0.8"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7813,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-12.73")).format(-1, 4).equals("-12.7300"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7813,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-12.73").format(-1, 4)).equals("-12.7300"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7817,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3.03")).format(4, -1).equals(" 3.03"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7817,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3.03").format(4, -1)).equals(" 3.03"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7820,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3.03")).format(4, 1).equals(" 3.0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7820,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3.03").format(4, 1)).equals(" 3.0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7823,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3.03")).format(4, -1, 3, -1, -1, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7823,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3.03").format(4, -1, 3, -1, -1, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7827,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("3.03")).format(-1, -1, 3, -1, -1, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7827,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("3.03").format(-1, -1, 3, -1, -1, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7831,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12345.73")).format(-1, -1, -1, 4, -1, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7831,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12345.73").format(-1, -1, -1, 4, -1, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7835,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12345.73")).format(-1, -1, -1, 5, -1, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7835,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12345.73").format(-1, -1, -1, 5, -1, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7839,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12345.73")).format(-1, -1, -1, 6, -1, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7839,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12345.73").format(-1, -1, -1, 6, -1, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7844,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12345.73")).format(-1, 8, -1, 3, -1, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7844,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12345.73").format(-1, 8, -1, 3, -1, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7848,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12345.73")).format(-1, 7, -1, 3, -1, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7848,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12345.73").format(-1, 7, -1, 3, -1, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7852,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12345.73")).format(-1, 6, -1, 3, -1, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7852,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12345.73").format(-1, 6, -1, 3, -1, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7856,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12345.73")).format(-1, 5, -1, 3, -1, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7856,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12345.73").format(-1, 5, -1, 3, -1, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7860,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12345.73")).format(-1, 4, -1, 3, -1, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7860,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12345.73").format(-1, 4, -1, 3, -1, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7864,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12345.73")).format(-1, 3, -1, 3, -1, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7864,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12345.73").format(-1, 3, -1, 3, -1, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7868,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12345.73")).format(-1, 2, -1, 3, -1, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7868,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12345.73").format(-1, 2, -1, 3, -1, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7872,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12345.73")).format(-1, 1, -1, 3, -1, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7872,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12345.73").format(-1, 1, -1, 3, -1, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7876,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12345.73")).format(-1, 0, -1, 3, -1, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7876,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12345.73").format(-1, 0, -1, 3, -1, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7881,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("99999.99")).format(-1, 6, -1, 3, -1, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7881,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("99999.99").format(-1, 6, -1, 3, -1, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7885,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("99999.99")).format(-1, 5, -1, 3, -1, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7885,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("99999.99").format(-1, 5, -1, 3, -1, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7889,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("99999.99")).format(-1, 2, -1, 3, -1, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7889,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("99999.99").format(-1, 2, -1, 3, -1, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7893,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("99999.99")).format(-1, 0, -1, 3, -1, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7893,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("99999.99").format(-1, 0, -1, 3, -1, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7897,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("99999.99")).format(3, 0, -1, 3, -1, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7897,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("99999.99").format(3, 0, -1, 3, -1, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7902,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12345.73")).format(-1, -1, 2, 2, -1, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7902,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12345.73").format(-1, -1, 2, 2, -1, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7906,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12345.73")).format(-1, 3, -1, 0, -1, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7906,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12345.73").format(-1, 3, -1, 0, -1, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7910,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.234573")).format(-1, 3, -1, 0, -1, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7910,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.234573").format(-1, 3, -1, 0, -1, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7914,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("123.45")).format(-1, 3, 2, 0, -1, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7914,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("123.45").format(-1, 3, 2, 0, -1, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7918,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"for052", (new com.ibm.icu.math.BigDecimal("0.444")).format(-1, 0).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7918,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"for052", ( new com.ibm.icu.math.BigDecimal("0.444").format(-1, 0)).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7920,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"for053", (new com.ibm.icu.math.BigDecimal("-0.444")).format(-1, 0).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7920,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"for053", ( new com.ibm.icu.math.BigDecimal("-0.444").format(-1, 0)).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7922,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"for054", (new com.ibm.icu.math.BigDecimal("0.4")).format(-1, 0).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7922,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"for054", ( new com.ibm.icu.math.BigDecimal("0.4").format(-1, 0)).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7924,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"for055", (new com.ibm.icu.math.BigDecimal("-0.4")).format(-1, 0).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7924,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"for055", ( new com.ibm.icu.math.BigDecimal("-0.4").format(-1, 0)).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7930,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1234.5")).format(-1, 3, 2, 0, eng, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7930,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1234.5").format(-1, 3, 2, 0, eng, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7934,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12345")).format(-1, 3, 3, 0, eng, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7934,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12345").format(-1, 3, 3, 0, eng, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7938,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12345")).format(-1, 3, 3, 0, sci, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7938,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12345").format(-1, 3, 3, 0, sci, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7942,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1234.5")).format(4, 3, 2, 0, eng, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7942,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1234.5").format(4, 3, 2, 0, eng, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7946,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12345")).format(5, 3, 3, 0, eng, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7946,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12345").format(5, 3, 3, 0, eng, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7950,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12345")).format(6, 3, 3, 0, sci, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7950,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12345").format(6, 3, 3, 0, sci, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7955,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.2345")).format(-1, 3, 2, 0, -1, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7955,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.2345").format(-1, 3, 2, 0, -1, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7959,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12345.73")).format(-1, -1, 3, 6, -1, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7959,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12345.73").format(-1, -1, 3, 6, -1, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7963,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12345e+5")).format(-1, 0).equals("1234500000"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7963,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12345e+5").format(-1, 0)).equals("1234500000"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7966,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12345e+5")).format(-1, 1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7966,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12345e+5").format(-1, 1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7970,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12345e+5")).format(-1, 2)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7970,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12345e+5").format(-1, 2))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7974,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12345e+5")).format(-1, 3)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7974,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12345e+5").format(-1, 3))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7978,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("12345e+5")).format(-1, 4)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7978,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("12345e+5").format(-1, 4))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7984,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("99.999")).format(-1, 2, -1, 2, -1, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7984,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("99.999").format(-1, 2, -1, 2, -1, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7988,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.99999")).format(-1, 4, 2, 2, -1, -1)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7988,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.99999").format(-1, 4, 2, 2, -1, -1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[7997,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("for080", d05.format(-1, 1).equals("0.1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8000,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d05.format(-1, 1, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_HALF_UP)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8002,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("for082", d05.format(-1, 1, -1, -1, -1, -1).equals("0.1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8003,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("for083", d05.format(-1, -1, -1, -1, -1, -1).equals("0.05"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8004,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("for084", d05.format(-1, -1).equals("0.05"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8010,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = iae.getMessage().equals("Bad argument 6 to format: 30");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8014,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("for090", d04.format(-1, 1).equals("0.0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8015,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("for091", d06.format(-1, 1).equals("0.1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8018,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d04.format(-1, 1, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_HALF_DOWN)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8022,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d05.format(-1, 1, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_HALF_DOWN)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8026,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d06.format(-1, 1, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_HALF_DOWN)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8031,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d04.format(-1, 1, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_HALF_EVEN)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8035,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d05.format(-1, 1, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_HALF_EVEN)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8039,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d06.format(-1, 1, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_HALF_EVEN)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8043,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d15.format(-1, 1, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_HALF_EVEN)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8049,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d050.format(-1, 1, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_HALF_EVEN)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8053,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d150.format(-1, 1, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_HALF_EVEN)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8059,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
m050.format(-1, 1, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_HALF_EVEN)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8063,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
m150.format(-1, 1, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_HALF_EVEN)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8069,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d051.format(-1, 1, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_HALF_EVEN)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8073,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d151.format(-1, 1, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_HALF_EVEN)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8078,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
m050.format(-1, 1, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_CEILING)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8082,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
m150.format(-1, 1, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_CEILING)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8086,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d050.format(-1, 1, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_CEILING)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8090,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d150.format(-1, 1, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_CEILING)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8095,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
m050.format(-1, 1, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_FLOOR)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8099,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
m150.format(-1, 1, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_FLOOR)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8103,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d050.format(-1, 1, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_FLOOR)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8107,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d150.format(-1, 1, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_FLOOR)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8112,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
m050.format(-1, 1, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_UP)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8116,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
m150.format(-1, 1, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_UP)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8120,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d050.format(-1, 1, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_UP)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8124,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d150.format(-1, 1, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_UP)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8129,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
m050.format(-1, 1, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_DOWN)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8133,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
m150.format(-1, 1, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_DOWN)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8137,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d050.format(-1, 1, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_DOWN)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8141,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d150.format(-1, 1, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_DOWN)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8148,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d000.format(-1, 1, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_UNNECESSARY)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8152,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d000.format(-1, 2, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_UNNECESSARY)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8156,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d000.format(-1, 3, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_UNNECESSARY)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8163,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Rounding necessary");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8168,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d050.format(-1, 2, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_UNNECESSARY)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8172,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d050.format(-1, 3, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_UNNECESSARY)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8176,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d500.format(-1, 1, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_UNNECESSARY)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8180,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d500.format(-1, 2, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_UNNECESSARY)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8184,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d500.format(-1, 3, -1, -1, -1, com.ibm.icu.math.MathContext.ROUND_UNNECESSARY)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8241,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("has001", d.hashCode() == (hs.hashCode()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8241,56] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("has001", (d.hashCode()) == hs.hashCode());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8244,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("has002", d.hashCode() == (hs.hashCode()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8244,56] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("has002", (d.hashCode()) == hs.hashCode());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8247,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("has003", d.hashCode() != (hs.hashCode()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8247,56] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("has003", (d.hashCode()) != hs.hashCode());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8268,46] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("inv001", imin == (new com.ibm.icu.math.BigDecimal(imin)).intValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8268,47] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("inv001", imin == ( new com.ibm.icu.math.BigDecimal(imin).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8270,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv002", (99) == ((new com.ibm.icu.math.BigDecimal("99")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8270,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv002", ( 99) == ((new com.ibm.icu.math.BigDecimal("99")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8270,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv002", ((99)) == (new com.ibm.icu.math.BigDecimal("99")).intValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8270,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv002", ((99)) == ( new com.ibm.icu.math.BigDecimal("99").intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8271,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("inv003", (1) == ((new com.ibm.icu.math.BigDecimal("1")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8271,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("inv003", ( 1) == ((new com.ibm.icu.math.BigDecimal("1")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8271,47] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("inv003", ((1)) == (new com.ibm.icu.math.BigDecimal("1")).intValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8271,48] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("inv003", ((1)) == ( new com.ibm.icu.math.BigDecimal("1").intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8272,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("inv004", (0) == ((new com.ibm.icu.math.BigDecimal("0")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8272,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("inv004", ( 0) == ((new com.ibm.icu.math.BigDecimal("0")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8272,47] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("inv004", ((0)) == (new com.ibm.icu.math.BigDecimal("0")).intValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8272,48] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("inv004", ((0)) == ( new com.ibm.icu.math.BigDecimal("0").intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8274,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv005", (-1) == ((new com.ibm.icu.math.BigDecimal("-1")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8274,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv005", ( -1) == ((new com.ibm.icu.math.BigDecimal("-1")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8274,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv005", ((-1)) == (new com.ibm.icu.math.BigDecimal("-1")).intValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8274,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv005", ((-1)) == ( new com.ibm.icu.math.BigDecimal("-1").intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8276,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv006", (-99) == ((new com.ibm.icu.math.BigDecimal("-99")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8276,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv006", ( -99) == ((new com.ibm.icu.math.BigDecimal("-99")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8276,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv006", ((-99)) == (new com.ibm.icu.math.BigDecimal("-99")).intValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8276,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv006", ((-99)) == ( new com.ibm.icu.math.BigDecimal("-99").intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8277,46] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("inv007", imax == (new com.ibm.icu.math.BigDecimal(imax)).intValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8277,47] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("inv007", imax == ( new com.ibm.icu.math.BigDecimal(imax).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8279,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv008", (5) == ((new com.ibm.icu.math.BigDecimal("5.0")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8279,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv008", ( 5) == ((new com.ibm.icu.math.BigDecimal("5.0")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8279,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv008", ((5)) == (new com.ibm.icu.math.BigDecimal("5.0")).intValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8279,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv008", ((5)) == ( new com.ibm.icu.math.BigDecimal("5.0").intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8281,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv009", (5) == ((new com.ibm.icu.math.BigDecimal("5.3")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8281,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv009", ( 5) == ((new com.ibm.icu.math.BigDecimal("5.3")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8281,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv009", ((5)) == (new com.ibm.icu.math.BigDecimal("5.3")).intValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8281,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv009", ((5)) == ( new com.ibm.icu.math.BigDecimal("5.3").intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8283,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv010", (5) == ((new com.ibm.icu.math.BigDecimal("5.5")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8283,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv010", ( 5) == ((new com.ibm.icu.math.BigDecimal("5.5")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8283,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv010", ((5)) == (new com.ibm.icu.math.BigDecimal("5.5")).intValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8283,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv010", ((5)) == ( new com.ibm.icu.math.BigDecimal("5.5").intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8285,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv011", (5) == ((new com.ibm.icu.math.BigDecimal("5.7")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8285,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv011", ( 5) == ((new com.ibm.icu.math.BigDecimal("5.7")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8285,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv011", ((5)) == (new com.ibm.icu.math.BigDecimal("5.7")).intValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8285,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv011", ((5)) == ( new com.ibm.icu.math.BigDecimal("5.7").intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8287,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv012", (5) == ((new com.ibm.icu.math.BigDecimal("5.9")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8287,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv012", ( 5) == ((new com.ibm.icu.math.BigDecimal("5.9")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8287,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv012", ((5)) == (new com.ibm.icu.math.BigDecimal("5.9")).intValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8287,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv012", ((5)) == ( new com.ibm.icu.math.BigDecimal("5.9").intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8289,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv013", (-5) == ((new com.ibm.icu.math.BigDecimal("-5.0")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8289,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv013", ( -5) == ((new com.ibm.icu.math.BigDecimal("-5.0")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8289,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv013", ((-5)) == (new com.ibm.icu.math.BigDecimal("-5.0")).intValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8289,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv013", ((-5)) == ( new com.ibm.icu.math.BigDecimal("-5.0").intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8291,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv014", (-5) == ((new com.ibm.icu.math.BigDecimal("-5.3")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8291,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv014", ( -5) == ((new com.ibm.icu.math.BigDecimal("-5.3")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8291,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv014", ((-5)) == (new com.ibm.icu.math.BigDecimal("-5.3")).intValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8291,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv014", ((-5)) == ( new com.ibm.icu.math.BigDecimal("-5.3").intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8293,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv015", (-5) == ((new com.ibm.icu.math.BigDecimal("-5.5")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8293,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv015", ( -5) == ((new com.ibm.icu.math.BigDecimal("-5.5")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8293,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv015", ((-5)) == (new com.ibm.icu.math.BigDecimal("-5.5")).intValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8293,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv015", ((-5)) == ( new com.ibm.icu.math.BigDecimal("-5.5").intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8295,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv016", (-5) == ((new com.ibm.icu.math.BigDecimal("-5.7")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8295,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv016", ( -5) == ((new com.ibm.icu.math.BigDecimal("-5.7")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8295,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv016", ((-5)) == (new com.ibm.icu.math.BigDecimal("-5.7")).intValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8295,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv016", ((-5)) == ( new com.ibm.icu.math.BigDecimal("-5.7").intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8297,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv017", (-5) == ((new com.ibm.icu.math.BigDecimal("-5.9")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8297,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv017", ( -5) == ((new com.ibm.icu.math.BigDecimal("-5.9")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8297,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv017", ((-5)) == (new com.ibm.icu.math.BigDecimal("-5.9")).intValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8297,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv017", ((-5)) == ( new com.ibm.icu.math.BigDecimal("-5.9").intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8300,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("88888888888")).intValue()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8300,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("88888888888").intValue())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8301,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
== -1305424328);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8304,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-88888888888")).intValue()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8304,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-88888888888").intValue())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8308,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(imin) == ((new com.ibm.icu.math.BigDecimal((((long) imax)) + 1)).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8308,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( imin) == ((new com.ibm.icu.math.BigDecimal((((long) imax)) + 1)).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8308,28] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
((imin)) == (new com.ibm.icu.math.BigDecimal((((long) imax)) + 1)).intValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8308,29] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
((imin)) == ( new com.ibm.icu.math.BigDecimal((((long) imax)) + 1).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8308,62] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
((imin)) == ((new com.ibm.icu.math.BigDecimal( ((long) imax) + 1)).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8311,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(imax) == ((new com.ibm.icu.math.BigDecimal((((long) imin)) - 1)).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8311,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( imax) == ((new com.ibm.icu.math.BigDecimal((((long) imin)) - 1)).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8311,28] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
((imax)) == (new com.ibm.icu.math.BigDecimal((((long) imin)) - 1)).intValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8311,29] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
((imax)) == ( new com.ibm.icu.math.BigDecimal((((long) imin)) - 1).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8311,62] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
((imax)) == ((new com.ibm.icu.math.BigDecimal( ((long) imin) - 1)).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8316,34] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv101", imin == (new com.ibm.icu.math.BigDecimal(imin)).intValueExact());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8316,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv101", imin == ( new com.ibm.icu.math.BigDecimal(imin).intValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8318,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv102", (99) == ((new com.ibm.icu.math.BigDecimal("99")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8318,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv102", ( 99) == ((new com.ibm.icu.math.BigDecimal("99")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8318,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv102", ((99)) == (new com.ibm.icu.math.BigDecimal("99")).intValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8318,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv102", ((99)) == ( new com.ibm.icu.math.BigDecimal("99").intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8319,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("inv103", (1) == ((new com.ibm.icu.math.BigDecimal("1")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8319,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("inv103", ( 1) == ((new com.ibm.icu.math.BigDecimal("1")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8319,47] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("inv103", ((1)) == (new com.ibm.icu.math.BigDecimal("1")).intValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8319,48] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("inv103", ((1)) == ( new com.ibm.icu.math.BigDecimal("1").intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8320,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("inv104", (0) == ((new com.ibm.icu.math.BigDecimal("0")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8320,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("inv104", ( 0) == ((new com.ibm.icu.math.BigDecimal("0")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8320,47] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("inv104", ((0)) == (new com.ibm.icu.math.BigDecimal("0")).intValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8320,48] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("inv104", ((0)) == ( new com.ibm.icu.math.BigDecimal("0").intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8322,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv105", (-1) == ((new com.ibm.icu.math.BigDecimal("-1")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8322,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv105", ( -1) == ((new com.ibm.icu.math.BigDecimal("-1")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8322,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv105", ((-1)) == (new com.ibm.icu.math.BigDecimal("-1")).intValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8322,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv105", ((-1)) == ( new com.ibm.icu.math.BigDecimal("-1").intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8324,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv106", (-99) == ((new com.ibm.icu.math.BigDecimal("-99")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8324,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv106", ( -99) == ((new com.ibm.icu.math.BigDecimal("-99")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8324,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv106", ((-99)) == (new com.ibm.icu.math.BigDecimal("-99")).intValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8324,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv106", ((-99)) == ( new com.ibm.icu.math.BigDecimal("-99").intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8325,46] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("inv107", imax == (new com.ibm.icu.math.BigDecimal(imax)).intValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8325,47] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("inv107", imax == ( new com.ibm.icu.math.BigDecimal(imax).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8327,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv108", (5) == ((new com.ibm.icu.math.BigDecimal("5.0")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8327,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv108", ( 5) == ((new com.ibm.icu.math.BigDecimal("5.0")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8327,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv108", ((5)) == (new com.ibm.icu.math.BigDecimal("5.0")).intValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8327,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv108", ((5)) == ( new com.ibm.icu.math.BigDecimal("5.0").intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8329,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv109", (-5) == ((new com.ibm.icu.math.BigDecimal("-5.0")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8329,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv109", ( -5) == ((new com.ibm.icu.math.BigDecimal("-5.0")).intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8329,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv109", ((-5)) == (new com.ibm.icu.math.BigDecimal("-5.0")).intValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8329,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv109", ((-5)) == ( new com.ibm.icu.math.BigDecimal("-5.0").intValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8331,34] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv110", imax == (new com.ibm.icu.math.BigDecimal(imax)).intValueExact());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8331,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"inv110", imax == ( new com.ibm.icu.math.BigDecimal(imax).intValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8335,12] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(v).intValueExact();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8339,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Conversion overflow:" + " " + v);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8346,12] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(v).intValueExact();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8357,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(imax).add(one).toString(),
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8358,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(imin).subtract(one).toString(),
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8373,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(imin).multiply(two).toString(),
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8374,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(imax).multiply(two).toString(),
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8375,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(imin).multiply(ten).toString(),
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8376,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(imax).multiply(ten).toString(),
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8484,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(v).intValueExact();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8488,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
norm = new com.ibm.icu.math.BigDecimal(v).toString();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8489,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Conversion overflow:" + " " + norm);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8508,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Conversion overflow:" + " " + norm);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8525,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Conversion overflow:" + " " + norm);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8577,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(v).intValueExact();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8581,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
norm = new com.ibm.icu.math.BigDecimal(v).toString();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8582,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Decimal part non-zero:" + " " + norm);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8608,34] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov001", lmin == (new com.ibm.icu.math.BigDecimal(lmin)).longValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8608,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov001", lmin == ( new com.ibm.icu.math.BigDecimal(lmin).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8610,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov002", (99) == ((new com.ibm.icu.math.BigDecimal("99")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8610,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov002", ( 99) == ((new com.ibm.icu.math.BigDecimal("99")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8610,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov002", ((99)) == (new com.ibm.icu.math.BigDecimal("99")).longValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8610,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov002", ((99)) == ( new com.ibm.icu.math.BigDecimal("99").longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8612,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov003", (1) == ((new com.ibm.icu.math.BigDecimal("1")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8612,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov003", ( 1) == ((new com.ibm.icu.math.BigDecimal("1")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8612,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov003", ((1)) == (new com.ibm.icu.math.BigDecimal("1")).longValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8612,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov003", ((1)) == ( new com.ibm.icu.math.BigDecimal("1").longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8614,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov004", (0) == ((new com.ibm.icu.math.BigDecimal("0")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8614,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov004", ( 0) == ((new com.ibm.icu.math.BigDecimal("0")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8614,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov004", ((0)) == (new com.ibm.icu.math.BigDecimal("0")).longValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8614,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov004", ((0)) == ( new com.ibm.icu.math.BigDecimal("0").longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8616,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov005", (-1) == ((new com.ibm.icu.math.BigDecimal("-1")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8616,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov005", ( -1) == ((new com.ibm.icu.math.BigDecimal("-1")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8616,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov005", ((-1)) == (new com.ibm.icu.math.BigDecimal("-1")).longValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8616,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov005", ((-1)) == ( new com.ibm.icu.math.BigDecimal("-1").longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8618,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov006", (-99) == ((new com.ibm.icu.math.BigDecimal("-99")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8618,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov006", ( -99) == ((new com.ibm.icu.math.BigDecimal("-99")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8618,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov006", ((-99)) == (new com.ibm.icu.math.BigDecimal("-99")).longValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8618,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov006", ((-99)) == ( new com.ibm.icu.math.BigDecimal("-99").longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8620,34] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov007", lmax == (new com.ibm.icu.math.BigDecimal(lmax)).longValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8620,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov007", lmax == ( new com.ibm.icu.math.BigDecimal(lmax).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8622,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov008", (5) == ((new com.ibm.icu.math.BigDecimal("5.0")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8622,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov008", ( 5) == ((new com.ibm.icu.math.BigDecimal("5.0")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8622,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov008", ((5)) == (new com.ibm.icu.math.BigDecimal("5.0")).longValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8622,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov008", ((5)) == ( new com.ibm.icu.math.BigDecimal("5.0").longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8624,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov009", (5) == ((new com.ibm.icu.math.BigDecimal("5.3")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8624,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov009", ( 5) == ((new com.ibm.icu.math.BigDecimal("5.3")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8624,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov009", ((5)) == (new com.ibm.icu.math.BigDecimal("5.3")).longValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8624,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov009", ((5)) == ( new com.ibm.icu.math.BigDecimal("5.3").longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8626,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov010", (5) == ((new com.ibm.icu.math.BigDecimal("5.5")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8626,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov010", ( 5) == ((new com.ibm.icu.math.BigDecimal("5.5")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8626,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov010", ((5)) == (new com.ibm.icu.math.BigDecimal("5.5")).longValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8626,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov010", ((5)) == ( new com.ibm.icu.math.BigDecimal("5.5").longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8628,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov011", (5) == ((new com.ibm.icu.math.BigDecimal("5.7")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8628,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov011", ( 5) == ((new com.ibm.icu.math.BigDecimal("5.7")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8628,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov011", ((5)) == (new com.ibm.icu.math.BigDecimal("5.7")).longValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8628,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov011", ((5)) == ( new com.ibm.icu.math.BigDecimal("5.7").longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8630,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov012", (5) == ((new com.ibm.icu.math.BigDecimal("5.9")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8630,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov012", ( 5) == ((new com.ibm.icu.math.BigDecimal("5.9")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8630,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov012", ((5)) == (new com.ibm.icu.math.BigDecimal("5.9")).longValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8630,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov012", ((5)) == ( new com.ibm.icu.math.BigDecimal("5.9").longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8632,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov013", (-5) == ((new com.ibm.icu.math.BigDecimal("-5.0")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8632,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov013", ( -5) == ((new com.ibm.icu.math.BigDecimal("-5.0")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8632,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov013", ((-5)) == (new com.ibm.icu.math.BigDecimal("-5.0")).longValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8632,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov013", ((-5)) == ( new com.ibm.icu.math.BigDecimal("-5.0").longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8634,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov014", (-5) == ((new com.ibm.icu.math.BigDecimal("-5.3")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8634,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov014", ( -5) == ((new com.ibm.icu.math.BigDecimal("-5.3")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8634,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov014", ((-5)) == (new com.ibm.icu.math.BigDecimal("-5.3")).longValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8634,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov014", ((-5)) == ( new com.ibm.icu.math.BigDecimal("-5.3").longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8636,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov015", (-5) == ((new com.ibm.icu.math.BigDecimal("-5.5")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8636,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov015", ( -5) == ((new com.ibm.icu.math.BigDecimal("-5.5")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8636,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov015", ((-5)) == (new com.ibm.icu.math.BigDecimal("-5.5")).longValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8636,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov015", ((-5)) == ( new com.ibm.icu.math.BigDecimal("-5.5").longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8638,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov016", (-5) == ((new com.ibm.icu.math.BigDecimal("-5.7")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8638,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov016", ( -5) == ((new com.ibm.icu.math.BigDecimal("-5.7")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8638,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov016", ((-5)) == (new com.ibm.icu.math.BigDecimal("-5.7")).longValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8638,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov016", ((-5)) == ( new com.ibm.icu.math.BigDecimal("-5.7").longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8640,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov017", (-5) == ((new com.ibm.icu.math.BigDecimal("-5.9")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8640,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov017", ( -5) == ((new com.ibm.icu.math.BigDecimal("-5.9")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8640,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov017", ((-5)) == (new com.ibm.icu.math.BigDecimal("-5.9")).longValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8640,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov017", ((-5)) == ( new com.ibm.icu.math.BigDecimal("-5.9").longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8643,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("888888888899999999998")).longValue()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8643,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("888888888899999999998").longValue())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8647,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-888888888899999999998")).longValue()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8647,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-888888888899999999998").longValue())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8648,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
== -3445173361941522430L);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8653,34] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov101", lmin == (new com.ibm.icu.math.BigDecimal(lmin)).longValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8653,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov101", lmin == ( new com.ibm.icu.math.BigDecimal(lmin).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8655,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov102", (99) == ((new com.ibm.icu.math.BigDecimal("99")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8655,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov102", ( 99) == ((new com.ibm.icu.math.BigDecimal("99")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8655,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov102", ((99)) == (new com.ibm.icu.math.BigDecimal("99")).longValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8655,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov102", ((99)) == ( new com.ibm.icu.math.BigDecimal("99").longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8657,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov103", (1) == ((new com.ibm.icu.math.BigDecimal("1")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8657,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov103", ( 1) == ((new com.ibm.icu.math.BigDecimal("1")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8657,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov103", ((1)) == (new com.ibm.icu.math.BigDecimal("1")).longValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8657,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov103", ((1)) == ( new com.ibm.icu.math.BigDecimal("1").longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8659,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov104", (0) == ((new com.ibm.icu.math.BigDecimal("0")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8659,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov104", ( 0) == ((new com.ibm.icu.math.BigDecimal("0")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8659,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov104", ((0)) == (new com.ibm.icu.math.BigDecimal("0")).longValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8659,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov104", ((0)) == ( new com.ibm.icu.math.BigDecimal("0").longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8661,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov105", (-1) == ((new com.ibm.icu.math.BigDecimal("-1")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8661,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov105", ( -1) == ((new com.ibm.icu.math.BigDecimal("-1")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8661,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov105", ((-1)) == (new com.ibm.icu.math.BigDecimal("-1")).longValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8661,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov105", ((-1)) == ( new com.ibm.icu.math.BigDecimal("-1").longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8663,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov106", (-99) == ((new com.ibm.icu.math.BigDecimal("-99")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8663,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov106", ( -99) == ((new com.ibm.icu.math.BigDecimal("-99")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8663,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov106", ((-99)) == (new com.ibm.icu.math.BigDecimal("-99")).longValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8663,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov106", ((-99)) == ( new com.ibm.icu.math.BigDecimal("-99").longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8665,34] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov107", lmax == (new com.ibm.icu.math.BigDecimal(lmax)).longValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8665,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov107", lmax == ( new com.ibm.icu.math.BigDecimal(lmax).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8667,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov108", (5) == ((new com.ibm.icu.math.BigDecimal("5.0")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8667,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov108", ( 5) == ((new com.ibm.icu.math.BigDecimal("5.0")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8667,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov108", ((5)) == (new com.ibm.icu.math.BigDecimal("5.0")).longValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8667,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov108", ((5)) == ( new com.ibm.icu.math.BigDecimal("5.0").longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8669,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov109", (-5) == ((new com.ibm.icu.math.BigDecimal("-5.0")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8669,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov109", ( -5) == ((new com.ibm.icu.math.BigDecimal("-5.0")).longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8669,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov109", ((-5)) == (new com.ibm.icu.math.BigDecimal("-5.0")).longValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8669,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"lov109", ((-5)) == ( new com.ibm.icu.math.BigDecimal("-5.0").longValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8673,12] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(v).longValueExact();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8677,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Conversion overflow:" + " " + v);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8682,12] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(v).longValueExact();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8686,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Conversion overflow:" + " " + v);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8691,12] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(v).longValueExact();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8695,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Decimal part non-zero:" + " " + v);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8703,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(lmax).add(one).toString(),
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8704,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(lmin).subtract(one).toString(),
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8705,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(lmin).multiply(two).toString(),
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8706,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(lmax).multiply(two).toString(),
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8707,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(lmin).multiply(ten).toString(),
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8708,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(lmax).multiply(ten).toString(),
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8757,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(v).longValueExact();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8761,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
norm = new com.ibm.icu.math.BigDecimal(v).toString();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8762,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Conversion overflow:" + " " + norm);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8781,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Conversion overflow:" + " " + norm);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8798,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Conversion overflow:" + " " + norm);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8812,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1")).movePointLeft(-10).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8812,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1").movePointLeft(-10).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8816,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1")).movePointLeft(-5).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8816,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1").movePointLeft(-5).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8820,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1")).movePointLeft(-1).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8820,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1").movePointLeft(-1).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8824,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1")).movePointLeft(0).toString().equals("-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8824,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1").movePointLeft(0).toString()).equals("-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8827,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1")).movePointLeft(+1).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8827,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1").movePointLeft(+1).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8831,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1")).movePointLeft(+5).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8831,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1").movePointLeft(+5).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8835,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1")).movePointLeft(+10).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8835,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1").movePointLeft(+10).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8840,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0")).movePointLeft(-10).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8840,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0").movePointLeft(-10).toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8843,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0")).movePointLeft(-5).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8843,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0").movePointLeft(-5).toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8846,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0")).movePointLeft(-1).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8846,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0").movePointLeft(-1).toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8849,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0")).movePointLeft(0).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8849,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0").movePointLeft(0).toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8852,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0")).movePointLeft(+1).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8852,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0").movePointLeft(+1).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8856,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0")).movePointLeft(+5).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8856,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0").movePointLeft(+5).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8860,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0")).movePointLeft(+10).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8860,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0").movePointLeft(+10).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8865,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+1")).movePointLeft(-10).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8865,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+1").movePointLeft(-10).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8869,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+1")).movePointLeft(-5).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8869,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+1").movePointLeft(-5).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8873,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+1")).movePointLeft(-1).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8873,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+1").movePointLeft(-1).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8877,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+1")).movePointLeft(0).toString().equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8877,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+1").movePointLeft(0).toString()).equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8880,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+1")).movePointLeft(+1).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8880,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+1").movePointLeft(+1).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8884,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+1")).movePointLeft(+5).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8884,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+1").movePointLeft(+5).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8888,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+1")).movePointLeft(+10).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8888,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+1").movePointLeft(+10).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8893,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5E+1")).movePointLeft(-10).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8893,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5E+1").movePointLeft(-10).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8897,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5E+1")).movePointLeft(-5).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8897,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5E+1").movePointLeft(-5).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8901,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5E+1")).movePointLeft(-1).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8901,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5E+1").movePointLeft(-1).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8905,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5E+1")).movePointLeft(0).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8905,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5E+1").movePointLeft(0).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8909,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5E+1")).movePointLeft(+1).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8909,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5E+1").movePointLeft(+1).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8913,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5E+1")).movePointLeft(+5).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8913,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5E+1").movePointLeft(+5).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8917,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5E+1")).movePointLeft(+10).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8917,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5E+1").movePointLeft(+10).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8928,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1")).movePointRight(+10).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8928,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1").movePointRight(+10).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8932,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1")).movePointRight(+5).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8932,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1").movePointRight(+5).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8936,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1")).movePointRight(+1).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8936,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1").movePointRight(+1).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8940,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1")).movePointRight(0).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8940,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1").movePointRight(0).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8944,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1")).movePointRight(-1).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8944,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1").movePointRight(-1).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8948,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1")).movePointRight(-5).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8948,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1").movePointRight(-5).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8952,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1")).movePointRight(-10).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8952,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1").movePointRight(-10).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8957,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0")).movePointRight(+10).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8957,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0").movePointRight(+10).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8961,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0")).movePointRight(+5).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8961,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0").movePointRight(+5).toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8964,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0")).movePointRight(+1).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8964,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0").movePointRight(+1).toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8967,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0")).movePointRight(0).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8967,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0").movePointRight(0).toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8970,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0")).movePointRight(-1).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8970,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0").movePointRight(-1).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8974,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0")).movePointRight(-5).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8974,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0").movePointRight(-5).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8978,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0")).movePointRight(-10).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8978,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0").movePointRight(-10).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8983,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+1")).movePointRight(+10).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8983,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+1").movePointRight(+10).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8987,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+1")).movePointRight(+5).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8987,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+1").movePointRight(+5).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8991,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+1")).movePointRight(+1).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8991,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+1").movePointRight(+1).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8995,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+1")).movePointRight(0).toString().equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8995,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+1").movePointRight(0).toString()).equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8998,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+1")).movePointRight(-1).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[8998,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+1").movePointRight(-1).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9002,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+1")).movePointRight(-5).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9002,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+1").movePointRight(-5).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9006,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+1")).movePointRight(-10).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9006,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+1").movePointRight(-10).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9011,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5E+1")).movePointRight(+10).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9011,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5E+1").movePointRight(+10).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9015,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5E+1")).movePointRight(+5).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9015,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5E+1").movePointRight(+5).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9019,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5E+1")).movePointRight(+1).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9019,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5E+1").movePointRight(+1).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9023,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5E+1")).movePointRight(0).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9023,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5E+1").movePointRight(0).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9027,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5E+1")).movePointRight(-1).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9027,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5E+1").movePointRight(-1).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9031,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5E+1")).movePointRight(-5).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9031,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5E+1").movePointRight(-5).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9035,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.5E+1")).movePointRight(-10).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9035,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.5E+1").movePointRight(-10).toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9044,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca001", (new com.ibm.icu.math.BigDecimal("-1")).scale() == 0);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9044,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca001", ( new com.ibm.icu.math.BigDecimal("-1").scale()) == 0);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9045,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca002", (new com.ibm.icu.math.BigDecimal("-10")).scale() == 0);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9045,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca002", ( new com.ibm.icu.math.BigDecimal("-10").scale()) == 0);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9046,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca003", (new com.ibm.icu.math.BigDecimal("+1")).scale() == 0);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9046,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca003", ( new com.ibm.icu.math.BigDecimal("+1").scale()) == 0);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9047,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca004", (new com.ibm.icu.math.BigDecimal("+10")).scale() == 0);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9047,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca004", ( new com.ibm.icu.math.BigDecimal("+10").scale()) == 0);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9048,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca005", (new com.ibm.icu.math.BigDecimal("1E+10")).scale() == 0);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9048,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca005", ( new com.ibm.icu.math.BigDecimal("1E+10").scale()) == 0);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9049,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca006", (new com.ibm.icu.math.BigDecimal("1E-10")).scale() == 10);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9049,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca006", ( new com.ibm.icu.math.BigDecimal("1E-10").scale()) == 10);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9050,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca007", (new com.ibm.icu.math.BigDecimal("0E-10")).scale() == 0);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9050,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca007", ( new com.ibm.icu.math.BigDecimal("0E-10").scale()) == 0);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9051,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca008", (new com.ibm.icu.math.BigDecimal("0.000")).scale() == 3);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9051,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca008", ( new com.ibm.icu.math.BigDecimal("0.000").scale()) == 3);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9052,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca009", (new com.ibm.icu.math.BigDecimal("0.00")).scale() == 2);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9052,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca009", ( new com.ibm.icu.math.BigDecimal("0.00").scale()) == 2);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9053,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca010", (new com.ibm.icu.math.BigDecimal("0.0")).scale() == 1);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9053,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca010", ( new com.ibm.icu.math.BigDecimal("0.0").scale()) == 1);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9054,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca011", (new com.ibm.icu.math.BigDecimal("0.1")).scale() == 1);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9054,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca011", ( new com.ibm.icu.math.BigDecimal("0.1").scale()) == 1);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9055,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca012", (new com.ibm.icu.math.BigDecimal("0.12")).scale() == 2);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9055,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca012", ( new com.ibm.icu.math.BigDecimal("0.12").scale()) == 2);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9056,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca013", (new com.ibm.icu.math.BigDecimal("0.123")).scale() == 3);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9056,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca013", ( new com.ibm.icu.math.BigDecimal("0.123").scale()) == 3);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9057,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca014", (new com.ibm.icu.math.BigDecimal("-0.0")).scale() == 1);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9057,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca014", ( new com.ibm.icu.math.BigDecimal("-0.0").scale()) == 1);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9058,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca015", (new com.ibm.icu.math.BigDecimal("-0.1")).scale() == 1);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9058,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca015", ( new com.ibm.icu.math.BigDecimal("-0.1").scale()) == 1);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9059,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca016", (new com.ibm.icu.math.BigDecimal("-0.12")).scale() == 2);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9059,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca016", ( new com.ibm.icu.math.BigDecimal("-0.12").scale()) == 2);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9060,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca017", (new com.ibm.icu.math.BigDecimal("-0.123")).scale() == 3);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9060,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sca017", ( new com.ibm.icu.math.BigDecimal("-0.123").scale()) == 3);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9073,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1")).setScale(0).toString().equals("-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9073,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1").setScale(0).toString()).equals("-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9076,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1")).setScale(1).toString().equals("-1.0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9076,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1").setScale(1).toString()).equals("-1.0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9079,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1")).setScale(2).toString().equals("-1.00"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9079,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1").setScale(2).toString()).equals("-1.00"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9082,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0")).setScale(0).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9082,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0").setScale(0).toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9085,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0")).setScale(1).toString().equals("0.0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9085,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0").setScale(1).toString()).equals("0.0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9088,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0")).setScale(2).toString().equals("0.00"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9088,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0").setScale(2).toString()).equals("0.00"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9091,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+1")).setScale(0).toString().equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9091,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+1").setScale(0).toString()).equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9094,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+1")).setScale(1).toString().equals("1.0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9094,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+1").setScale(1).toString()).equals("1.0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9097,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+1")).setScale(2).toString().equals("1.00"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9097,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+1").setScale(2).toString()).equals("1.00"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9100,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9100,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9106,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9106,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9112,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9112,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9118,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9118,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9124,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9124,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9130,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9130,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9136,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9136,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9142,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9142,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9148,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9148,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9155,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.04"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9155,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.04")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9161,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.04"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9161,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.04")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9167,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.04"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9167,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.04")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9173,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.04"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9173,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.04")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9179,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.05"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9179,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.05")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9185,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.05"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9185,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.05")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9191,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.05"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9191,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.05")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9197,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.05"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9197,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.05")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9203,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.05"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9203,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.05")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9209,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.05"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9209,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.05")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9215,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.05"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9215,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.05")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9221,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.05"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9221,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.05")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9227,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.06"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9227,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.06")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9233,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.06"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9233,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.06")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9239,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.06"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9239,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.06")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9245,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.06"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9245,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.06")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9252,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-10"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9252,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9258,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+1"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9258,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+1")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9264,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+10"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9264,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9270,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1E+10"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9270,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1E+10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9276,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1E-10"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9276,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1E-10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9282,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1E-2"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9282,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1E-2")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9288,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0E-10"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9288,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0E-10")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9296,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.005"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9296,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.005")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9302,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.005"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9302,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.005")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9308,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.005"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9308,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.005")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9314,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.005"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9314,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.005")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9320,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.005"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9320,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.005")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9326,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.005"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9326,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.005")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9332,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.005"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9332,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.005")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9338,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.005"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9338,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.005")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9344,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.005"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9344,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.005")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9350,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.005"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9350,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.005")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9356,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.005"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9356,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.005")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9362,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.005"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9362,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.005")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9368,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.005"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9368,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.005")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9374,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.005"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9374,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.005")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9380,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.005"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9380,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.005")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9386,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.015"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9386,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.015")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9392,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.015"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9392,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.015")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9398,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.015"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9398,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.015")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9404,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.005"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9404,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.005")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9410,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.005"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9410,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.005")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9416,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.005"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9416,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.005")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9422,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.095"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9422,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.095")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9428,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.095"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9428,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.095")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9434,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.095"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9434,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.095")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9440,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.005"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9440,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.005")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9446,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.005"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9446,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.005")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9452,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.005"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9452,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.005")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9458,12] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(1).setScale(-8);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9462,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = e.getMessage().equals("Negative scale: -8");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9466,12] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(1.0001D).setScale(3);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9470,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = e.getMessage().equals("Rounding necessary");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9474,12] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(1E-8D).setScale(3);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9478,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = e.getMessage().equals("Rounding necessary");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9496,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv002", ((short) 0) == ((new com.ibm.icu.math.BigDecimal("0")).shortValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9496,43] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv002", (((short) 0)) == (new com.ibm.icu.math.BigDecimal("0")).shortValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9496,44] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv002", (((short) 0)) == ( new com.ibm.icu.math.BigDecimal("0").shortValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9498,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv003", ((short) 1) == ((new com.ibm.icu.math.BigDecimal("1")).shortValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9498,43] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv003", (((short) 1)) == (new com.ibm.icu.math.BigDecimal("1")).shortValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9498,44] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv003", (((short) 1)) == ( new com.ibm.icu.math.BigDecimal("1").shortValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9500,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv004", ((short) 99) == ((new com.ibm.icu.math.BigDecimal("99")).shortValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9500,44] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv004", (((short) 99)) == (new com.ibm.icu.math.BigDecimal("99")).shortValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9500,45] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv004", (((short) 99)) == ( new com.ibm.icu.math.BigDecimal("99").shortValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9502,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv006", (smax) == ((new com.ibm.icu.math.BigDecimal(smax)).shortValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9502,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv006", ( smax) == ((new com.ibm.icu.math.BigDecimal(smax)).shortValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9502,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv006", ((smax)) == (new com.ibm.icu.math.BigDecimal(smax)).shortValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9502,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv006", ((smax)) == ( new com.ibm.icu.math.BigDecimal(smax).shortValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9504,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv007", (smin) == ((new com.ibm.icu.math.BigDecimal(smin)).shortValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9504,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv007", ( smin) == ((new com.ibm.icu.math.BigDecimal(smin)).shortValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9504,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv007", ((smin)) == (new com.ibm.icu.math.BigDecimal(smin)).shortValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9504,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv007", ((smin)) == ( new com.ibm.icu.math.BigDecimal(smin).shortValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9506,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv008", (sneg) == ((new com.ibm.icu.math.BigDecimal(sneg)).shortValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9506,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv008", ( sneg) == ((new com.ibm.icu.math.BigDecimal(sneg)).shortValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9506,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv008", ((sneg)) == (new com.ibm.icu.math.BigDecimal(sneg)).shortValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9506,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv008", ((sneg)) == ( new com.ibm.icu.math.BigDecimal(sneg).shortValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9508,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv009", (szer) == ((new com.ibm.icu.math.BigDecimal(szer)).shortValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9508,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv009", ( szer) == ((new com.ibm.icu.math.BigDecimal(szer)).shortValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9508,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv009", ((szer)) == (new com.ibm.icu.math.BigDecimal(szer)).shortValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9508,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv009", ((szer)) == ( new com.ibm.icu.math.BigDecimal(szer).shortValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9510,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv010", (spos) == ((new com.ibm.icu.math.BigDecimal(spos)).shortValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9510,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv010", ( spos) == ((new com.ibm.icu.math.BigDecimal(spos)).shortValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9510,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv010", ((spos)) == (new com.ibm.icu.math.BigDecimal(spos)).shortValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9510,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv010", ((spos)) == ( new com.ibm.icu.math.BigDecimal(spos).shortValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9512,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv011", (smin) == ((new com.ibm.icu.math.BigDecimal(smax + 1)).shortValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9512,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv011", ( smin) == ((new com.ibm.icu.math.BigDecimal(smax + 1)).shortValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9512,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv011", ((smin)) == (new com.ibm.icu.math.BigDecimal(smax + 1)).shortValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9512,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv011", ((smin)) == ( new com.ibm.icu.math.BigDecimal(smax + 1).shortValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9514,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv012", (smax) == ((new com.ibm.icu.math.BigDecimal(smin - 1)).shortValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9514,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv012", ( smax) == ((new com.ibm.icu.math.BigDecimal(smin - 1)).shortValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9514,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv012", ((smax)) == (new com.ibm.icu.math.BigDecimal(smin - 1)).shortValue());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9514,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv012", ((smax)) == ( new com.ibm.icu.math.BigDecimal(smin - 1).shortValue()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9518,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
((short) 0) == ((new com.ibm.icu.math.BigDecimal("0")).shortValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9518,33] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(((short) 0)) == (new com.ibm.icu.math.BigDecimal("0")).shortValueExact());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9518,34] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(((short) 0)) == ( new com.ibm.icu.math.BigDecimal("0").shortValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9521,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
((short) 1) == ((new com.ibm.icu.math.BigDecimal("1")).shortValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9521,33] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(((short) 1)) == (new com.ibm.icu.math.BigDecimal("1")).shortValueExact());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9521,34] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(((short) 1)) == ( new com.ibm.icu.math.BigDecimal("1").shortValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9524,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
((short) 99) == ((new com.ibm.icu.math.BigDecimal("99")).shortValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9524,34] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(((short) 99)) == (new com.ibm.icu.math.BigDecimal("99")).shortValueExact());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9524,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(((short) 99)) == ( new com.ibm.icu.math.BigDecimal("99").shortValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9526,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv026", (smax) == ((new com.ibm.icu.math.BigDecimal(smax)).shortValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9526,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv026", ( smax) == ((new com.ibm.icu.math.BigDecimal(smax)).shortValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9526,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv026", ((smax)) == (new com.ibm.icu.math.BigDecimal(smax)).shortValueExact());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9526,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv026", ((smax)) == ( new com.ibm.icu.math.BigDecimal(smax).shortValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9528,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv027", (smin) == ((new com.ibm.icu.math.BigDecimal(smin)).shortValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9528,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv027", ( smin) == ((new com.ibm.icu.math.BigDecimal(smin)).shortValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9528,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv027", ((smin)) == (new com.ibm.icu.math.BigDecimal(smin)).shortValueExact());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9528,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv027", ((smin)) == ( new com.ibm.icu.math.BigDecimal(smin).shortValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9530,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv028", (sneg) == ((new com.ibm.icu.math.BigDecimal(sneg)).shortValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9530,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv028", ( sneg) == ((new com.ibm.icu.math.BigDecimal(sneg)).shortValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9530,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv028", ((sneg)) == (new com.ibm.icu.math.BigDecimal(sneg)).shortValueExact());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9530,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv028", ((sneg)) == ( new com.ibm.icu.math.BigDecimal(sneg).shortValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9532,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv029", (szer) == ((new com.ibm.icu.math.BigDecimal(szer)).shortValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9532,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv029", ( szer) == ((new com.ibm.icu.math.BigDecimal(szer)).shortValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9532,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv029", ((szer)) == (new com.ibm.icu.math.BigDecimal(szer)).shortValueExact());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9532,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv029", ((szer)) == ( new com.ibm.icu.math.BigDecimal(szer).shortValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9534,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv030", (spos) == ((new com.ibm.icu.math.BigDecimal(spos)).shortValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9534,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv030", ( spos) == ((new com.ibm.icu.math.BigDecimal(spos)).shortValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9534,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv030", ((spos)) == (new com.ibm.icu.math.BigDecimal(spos)).shortValueExact());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9534,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"shv030", ((spos)) == ( new com.ibm.icu.math.BigDecimal(spos).shortValueExact()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9537,12] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(v).shortValueExact();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9541,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Conversion overflow:" + " " + v);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9546,12] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(v).shortValueExact();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9550,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Conversion overflow:" + " " + v);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9555,12] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(v).shortValueExact();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9559,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Decimal part non-zero:" + " " + v);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9566,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(smax).add(one).toString(),
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9567,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(smin).subtract(one).toString(),
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9574,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(smin).multiply(two).toString(),
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9575,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(smax).multiply(two).toString(),
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9576,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(smin).multiply(ten).toString(),
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9577,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(smax).multiply(ten).toString(),
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9599,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(v).shortValueExact();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9603,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
norm = new com.ibm.icu.math.BigDecimal(v).toString();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9604,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = ae.getMessage().equals("Conversion overflow:" + " " + norm);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9617,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sig001", -1 == ((new com.ibm.icu.math.BigDecimal("-1")).signum()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9617,46] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sig001", (-1) == (new com.ibm.icu.math.BigDecimal("-1")).signum());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9617,47] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sig001", (-1) == ( new com.ibm.icu.math.BigDecimal("-1").signum()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9619,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"sig002", -1 == ((new com.ibm.icu.math.BigDecimal("-0.0010")).signum()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9619,34] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"sig002", (-1) == (new com.ibm.icu.math.BigDecimal("-0.0010")).signum());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9619,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"sig002", (-1) == ( new com.ibm.icu.math.BigDecimal("-0.0010").signum()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9621,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"sig003", -1 == ((new com.ibm.icu.math.BigDecimal("-0.001")).signum()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9621,34] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"sig003", (-1) == (new com.ibm.icu.math.BigDecimal("-0.001")).signum());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9621,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"sig003", (-1) == ( new com.ibm.icu.math.BigDecimal("-0.001").signum()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9622,43] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sig004", 0 == (new com.ibm.icu.math.BigDecimal("-0.00")).signum());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9622,44] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sig004", 0 == ( new com.ibm.icu.math.BigDecimal("-0.00").signum()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9623,43] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sig005", 0 == (new com.ibm.icu.math.BigDecimal("-0")).signum());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9623,44] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sig005", 0 == ( new com.ibm.icu.math.BigDecimal("-0").signum()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9624,43] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sig006", 0 == (new com.ibm.icu.math.BigDecimal("0")).signum());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9624,44] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sig006", 0 == ( new com.ibm.icu.math.BigDecimal("0").signum()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9625,43] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sig007", 0 == (new com.ibm.icu.math.BigDecimal("00")).signum());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9625,44] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sig007", 0 == ( new com.ibm.icu.math.BigDecimal("00").signum()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9626,43] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sig008", 0 == (new com.ibm.icu.math.BigDecimal("00.0")).signum());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9626,44] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sig008", 0 == ( new com.ibm.icu.math.BigDecimal("00.0").signum()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9627,43] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sig009", 1 == (new com.ibm.icu.math.BigDecimal("00.01")).signum());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9627,44] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sig009", 1 == ( new com.ibm.icu.math.BigDecimal("00.01").signum()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9628,43] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sig010", 1 == (new com.ibm.icu.math.BigDecimal("00.01")).signum());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9628,44] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sig010", 1 == ( new com.ibm.icu.math.BigDecimal("00.01").signum()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9629,43] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sig011", 1 == (new com.ibm.icu.math.BigDecimal("00.010")).signum());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9629,44] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sig011", 1 == ( new com.ibm.icu.math.BigDecimal("00.010").signum()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9630,43] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sig012", 1 == (new com.ibm.icu.math.BigDecimal("01.01")).signum());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9630,44] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sig012", 1 == ( new com.ibm.icu.math.BigDecimal("01.01").signum()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9631,43] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sig013", 1 == (new com.ibm.icu.math.BigDecimal("+0.01")).signum());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9631,44] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sig013", 1 == ( new com.ibm.icu.math.BigDecimal("+0.01").signum()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9632,43] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sig014", 1 == (new com.ibm.icu.math.BigDecimal("+0.001")).signum());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9632,44] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sig014", 1 == ( new com.ibm.icu.math.BigDecimal("+0.001").signum()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9633,43] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sig015", 1 == (new com.ibm.icu.math.BigDecimal("1")).signum());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9633,44] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sig015", 1 == ( new com.ibm.icu.math.BigDecimal("1").signum()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9634,43] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sig016", 1 == (new com.ibm.icu.math.BigDecimal("1e+12")).signum());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9634,44] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sig016", 1 == ( new com.ibm.icu.math.BigDecimal("1e+12").signum()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9635,43] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sig017", 0 == (new com.ibm.icu.math.BigDecimal("00e+12")).signum());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9635,44] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("sig017", 0 == ( new com.ibm.icu.math.BigDecimal("00e+12").signum()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9645,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0")).toBigDecimal().toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9645,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0").toBigDecimal().toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9648,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1")).toBigDecimal().toString().equals("-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9648,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1").toBigDecimal().toString()).equals("-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9651,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+1")).toBigDecimal().toString().equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9651,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+1").toBigDecimal().toString()).equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9654,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1")).toBigDecimal().toString().equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9654,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1").toBigDecimal().toString()).equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9657,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1E+2")).toBigDecimal().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9657,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1E+2").toBigDecimal().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9661,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1E-2")).toBigDecimal().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9661,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1E-2").toBigDecimal().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9666,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1E-8")).toBigDecimal().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9666,21] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1E-8").toBigDecimal().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9672,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1E-9")).toBigDecimal().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9672,21] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1E-9").toBigDecimal().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9677,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1E10")).toBigDecimal().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9677,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1E10").toBigDecimal().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9681,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1E12")).toBigDecimal().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9681,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1E12").toBigDecimal().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9695,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1")).toBigInteger().toString().equals("-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9695,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1").toBigInteger().toString()).equals("-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9698,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0")).toBigInteger().toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9698,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0").toBigInteger().toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9701,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+1")).toBigInteger().toString().equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9701,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+1").toBigInteger().toString()).equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9704,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10")).toBigInteger().toString().equals("10"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9704,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10").toBigInteger().toString()).equals("10"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9707,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1000")).toBigInteger().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9707,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1000").toBigInteger().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9711,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1E+0")).toBigInteger().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9711,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1E+0").toBigInteger().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9715,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0E+0")).toBigInteger().toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9715,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0E+0").toBigInteger().toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9718,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+1E+0")).toBigInteger().toString().equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9718,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+1E+0").toBigInteger().toString()).equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9721,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10E+0")).toBigInteger().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9721,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10E+0").toBigInteger().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9725,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1E+3")).toBigInteger().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9725,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1E+3").toBigInteger().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9729,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.00")).toBigInteger().toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9729,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.00").toBigInteger().toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9732,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.01")).toBigInteger().toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9732,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.01").toBigInteger().toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9735,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.0")).toBigInteger().toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9735,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.0").toBigInteger().toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9738,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.1")).toBigInteger().toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9738,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.1").toBigInteger().toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9741,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-0.00")).toBigInteger().toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9741,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-0.00").toBigInteger().toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9744,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-0.01")).toBigInteger().toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9744,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-0.01").toBigInteger().toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9747,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-0.0")).toBigInteger().toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9747,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-0.0").toBigInteger().toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9750,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-0.1")).toBigInteger().toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9750,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-0.1").toBigInteger().toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9753,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.00")).toBigInteger().toString().equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9753,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.00").toBigInteger().toString()).equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9756,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.01")).toBigInteger().toString().equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9756,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.01").toBigInteger().toString()).equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9759,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.0")).toBigInteger().toString().equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9759,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.0").toBigInteger().toString()).equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9762,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.1")).toBigInteger().toString().equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9762,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.1").toBigInteger().toString()).equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9765,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1.00")).toBigInteger().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9765,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1.00").toBigInteger().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9769,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1.01")).toBigInteger().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9769,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1.01").toBigInteger().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9773,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1.0")).toBigInteger().toString().equals("-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9773,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1.0").toBigInteger().toString()).equals("-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9776,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1.1")).toBigInteger().toString().equals("-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9776,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1.1").toBigInteger().toString()).equals("-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9779,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-111.111")).toBigInteger().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9779,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-111.111").toBigInteger().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9783,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+111.111")).toBigInteger().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9783,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+111.111").toBigInteger().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9787,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.09")).toBigInteger().toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9787,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.09").toBigInteger().toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9790,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.9")).toBigInteger().toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9790,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.9").toBigInteger().toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9793,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.09")).toBigInteger().toString().equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9793,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.09").toBigInteger().toString()).equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9796,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.05")).toBigInteger().toString().equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9796,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.05").toBigInteger().toString()).equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9799,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.04")).toBigInteger().toString().equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9799,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.04").toBigInteger().toString()).equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9802,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.99")).toBigInteger().toString().equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9802,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.99").toBigInteger().toString()).equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9805,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.9")).toBigInteger().toString().equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9805,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.9").toBigInteger().toString()).equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9808,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.5")).toBigInteger().toString().equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9808,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.5").toBigInteger().toString()).equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9811,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.4")).toBigInteger().toString().equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9811,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.4").toBigInteger().toString()).equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9814,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1.09")).toBigInteger().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9814,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1.09").toBigInteger().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9818,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1.05")).toBigInteger().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9818,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1.05").toBigInteger().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9822,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1.04")).toBigInteger().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9822,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1.04").toBigInteger().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9826,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1.99")).toBigInteger().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9826,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1.99").toBigInteger().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9830,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1.9")).toBigInteger().toString().equals("-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9830,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1.9").toBigInteger().toString()).equals("-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9833,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1.5")).toBigInteger().toString().equals("-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9833,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1.5").toBigInteger().toString()).equals("-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9836,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1.4")).toBigInteger().toString().equals("-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9836,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1.4").toBigInteger().toString()).equals("-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9839,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1E-1000")).toBigInteger().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9839,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1E-1000").toBigInteger().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9843,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1E-1000")).toBigInteger().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9843,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1E-1000").toBigInteger().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9849,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1")).toBigIntegerExact().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9849,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1").toBigIntegerExact().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9853,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0")).toBigIntegerExact().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9853,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0").toBigIntegerExact().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9857,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+1")).toBigIntegerExact().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9857,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+1").toBigIntegerExact().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9861,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10")).toBigIntegerExact().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9861,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10").toBigIntegerExact().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9865,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1000")).toBigIntegerExact().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9865,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1000").toBigIntegerExact().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9869,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1E+0")).toBigIntegerExact().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9869,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1E+0").toBigIntegerExact().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9873,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0E+0")).toBigIntegerExact().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9873,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0E+0").toBigIntegerExact().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9877,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+1E+0")).toBigIntegerExact().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9877,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+1E+0").toBigIntegerExact().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9881,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10E+0")).toBigIntegerExact().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9881,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10E+0").toBigIntegerExact().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9885,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1E+3")).toBigIntegerExact().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9885,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1E+3").toBigIntegerExact().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9889,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.00")).toBigIntegerExact().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9889,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.00").toBigIntegerExact().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9893,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.0")).toBigIntegerExact().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9893,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.0").toBigIntegerExact().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9897,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-0.00")).toBigIntegerExact().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9897,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-0.00").toBigIntegerExact().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9901,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-0.0")).toBigIntegerExact().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9901,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-0.0").toBigIntegerExact().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9905,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.00")).toBigIntegerExact().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9905,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.00").toBigIntegerExact().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9909,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.0")).toBigIntegerExact().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9909,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.0").toBigIntegerExact().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9913,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1.00")).toBigIntegerExact().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9913,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1.00").toBigIntegerExact().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9917,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1.0")).toBigIntegerExact().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9917,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1.0").toBigIntegerExact().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9921,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.00000000000000000000000000000"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9921,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.00000000000000000000000000000")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9976,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new com.ibm.icu.math.BigDecimal(badstrings[i]).toBigIntegerExact();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[9998,14] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
car = str.toCharArray();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10003,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"tca002", new java.lang.String(ca).equals((new java.lang.String(car))));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10003,60] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"tca002", (new java.lang.String(ca)).equals( new java.lang.String(car)));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10021,14] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
car = str.toCharArray();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10025,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("tos001", str.toCharArray().length == ca.length);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10026,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("tos002", str.length() == (cs.length()));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10026,56] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("tos002", (str.length()) == cs.length());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10027,49] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("tos003", str.equals( new java.lang.String(ca)));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10041,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1")).unscaledValue().toString().equals("-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10041,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1").unscaledValue().toString()).equals("-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10044,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0")).unscaledValue().toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10044,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0").unscaledValue().toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10047,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+1")).unscaledValue().toString().equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10047,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+1").unscaledValue().toString()).equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10050,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10")).unscaledValue().toString().equals("10"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10050,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10").unscaledValue().toString()).equals("10"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10053,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1000")).unscaledValue().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10053,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1000").unscaledValue().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10057,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1E+0")).unscaledValue().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10057,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1E+0").unscaledValue().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10061,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0E+0")).unscaledValue().toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10061,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0E+0").unscaledValue().toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10064,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+1E+0")).unscaledValue().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10064,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+1E+0").unscaledValue().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10068,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("10E+0")).unscaledValue().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10068,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("10E+0").unscaledValue().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10072,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1E+3")).unscaledValue().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10072,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1E+3").unscaledValue().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10076,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.00")).unscaledValue().toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10076,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.00").unscaledValue().toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10079,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.01")).unscaledValue().toString().equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10079,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.01").unscaledValue().toString()).equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10082,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.0")).unscaledValue().toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10082,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.0").unscaledValue().toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10085,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("0.1")).unscaledValue().toString().equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10085,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("0.1").unscaledValue().toString()).equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10088,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-0.00")).unscaledValue().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10088,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-0.00").unscaledValue().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10092,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-0.01")).unscaledValue().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10092,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-0.01").unscaledValue().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10096,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-0.0")).unscaledValue().toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10096,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-0.0").unscaledValue().toString()).equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10099,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-0.1")).unscaledValue().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10099,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-0.1").unscaledValue().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10103,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.00")).unscaledValue().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10103,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.00").unscaledValue().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10107,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.01")).unscaledValue().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10107,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.01").unscaledValue().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10111,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.0")).unscaledValue().toString().equals("10"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10111,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.0").unscaledValue().toString()).equals("10"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10114,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("1.1")).unscaledValue().toString().equals("11"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10114,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("1.1").unscaledValue().toString()).equals("11"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10117,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1.00")).unscaledValue().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10117,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1.00").unscaledValue().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10121,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1.01")).unscaledValue().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10121,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1.01").unscaledValue().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10125,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1.0")).unscaledValue().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10125,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1.0").unscaledValue().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10129,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-1.1")).unscaledValue().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10129,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-1.1").unscaledValue().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10133,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("-111.111")).unscaledValue().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10133,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("-111.111").unscaledValue().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10137,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(new com.ibm.icu.math.BigDecimal("+111.111")).unscaledValue().toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10137,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
( new com.ibm.icu.math.BigDecimal("+111.111").unscaledValue().toString())
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10161,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.BigDecimal.valueOf(((byte) -2)).toString().equals("-2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10164,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.BigDecimal.valueOf(((byte) -1)).toString().equals("-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10167,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.BigDecimal.valueOf(((byte) -0)).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10170,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.BigDecimal.valueOf(((byte) +1)).toString().equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10173,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.BigDecimal.valueOf(((byte) +2)).toString().equals("2"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10176,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.BigDecimal.valueOf(((byte) 10)).toString().equals("10"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10179,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.BigDecimal.valueOf(((byte) 11)).toString().equals("11"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10182,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.BigDecimal.valueOf(lmin).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10186,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.BigDecimal.valueOf(lmax).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10189,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"val010", com.ibm.icu.math.BigDecimal.valueOf(lneg).toString().equals("-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10191,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"val011", com.ibm.icu.math.BigDecimal.valueOf(lzer).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10193,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"val012", com.ibm.icu.math.BigDecimal.valueOf(lpos).toString().equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10196,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.BigDecimal.valueOf(lmin, 0).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10200,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.BigDecimal.valueOf(lmax, 0).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10203,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"val015", com.ibm.icu.math.BigDecimal.valueOf(lneg, 0).toString().equals("-1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10205,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"val016", com.ibm.icu.math.BigDecimal.valueOf(lpos, 0).toString().equals("1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10208,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"val017", com.ibm.icu.math.BigDecimal.valueOf(lzer, 0).toString().equals("0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10210,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"val018", com.ibm.icu.math.BigDecimal.valueOf(lzer, 1).toString().equals("0.0"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10212,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"val019", com.ibm.icu.math.BigDecimal.valueOf(lzer, 2).toString().equals("0.00"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10215,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.BigDecimal.valueOf(lzer, 3).toString().equals("0.000"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10218,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.BigDecimal.valueOf(lzer, 10).toString().equals("0.0000000000"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10222,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.BigDecimal.valueOf(lmin, 7).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10226,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.BigDecimal.valueOf(lmax, 11).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10234,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = e.getMessage().equals("Negative scale: -8");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10242,22] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
dpos = dpos / 10;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10245,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"val201", com.ibm.icu.math.BigDecimal.valueOf(dneg).toString().equals("-0.1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10248,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.BigDecimal.valueOf(dzer).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10251,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"val203", com.ibm.icu.math.BigDecimal.valueOf(dpos).toString().equals("0.1"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10255,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"val204", com.ibm.icu.math.BigDecimal.valueOf(dneg5).toString().equals("-0.5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10257,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"val205", com.ibm.icu.math.BigDecimal.valueOf(dpos5).toString().equals("0.5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10262,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.BigDecimal.valueOf(dmin).toString().equals("4.9E-324"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10265,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.BigDecimal.valueOf(dmax).toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10270,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d = d / 10;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10272,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"val210", com.ibm.icu.math.BigDecimal.valueOf(d).toString().equals("0.9"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10273,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d = d / 10;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10275,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"val211", com.ibm.icu.math.BigDecimal.valueOf(d).toString().equals("0.09"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10276,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d = d / 10;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10281,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d = d / 10;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10283,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"val213", com.ibm.icu.math.BigDecimal.valueOf(d).toString().equals("9.0E-4"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10284,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d = d / 10;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10287,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.BigDecimal.valueOf(d).toString().equals("8.999999999999999E-5"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10288,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d = d / 10;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10291,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.BigDecimal.valueOf(d).toString().equals("8.999999999999999E-6"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10292,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d = d / 10;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10295,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.BigDecimal.valueOf(d).toString().equals("8.999999999999999E-7"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10296,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d = d / 10;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10299,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.BigDecimal.valueOf(d).toString().equals("8.999999999999999E-8"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10300,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
d = d / 10;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10303,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.BigDecimal.valueOf(d).toString().equals("8.999999999999998E-9"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10348,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("mcn001", com.ibm.icu.math.MathContext.DEFAULT.getDigits() == 9);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10351,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.MathContext.DEFAULT.getForm()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10355,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.MathContext.DEFAULT.getForm()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10359,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.MathContext.DEFAULT.getForm()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10365,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
com.ibm.icu.math.MathContext.DEFAULT.getRoundingMode()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10378,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("mcn021", mccon1.getDigits() == 111);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10380,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"mcn022", mccon1.getForm() == com.ibm.icu.math.MathContext.SCIENTIFIC);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10383,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"mcn024", mccon1.getRoundingMode() == com.ibm.icu.math.MathContext.ROUND_HALF_UP);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10386,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("mcn031", mccon2.getDigits() == 78);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10388,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"mcn032", mccon2.getForm() == com.ibm.icu.math.MathContext.ENGINEERING);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10391,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"mcn034", mccon2.getRoundingMode() == com.ibm.icu.math.MathContext.ROUND_HALF_UP);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10394,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("mcn041", mccon3.getDigits() == 5);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10395,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("mcn042", mccon3.getForm() == com.ibm.icu.math.MathContext.PLAIN);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10398,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"mcn044", mccon3.getRoundingMode() == com.ibm.icu.math.MathContext.ROUND_HALF_UP);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10406,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
TestFmwk.assertTrue("mcn051", mccon4.getDigits() == 0);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10408,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"mcn052", mccon4.getForm() == com.ibm.icu.math.MathContext.SCIENTIFIC);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10411,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
"mcn054", mccon4.getRoundingMode() == com.ibm.icu.math.MathContext.ROUND_FLOOR);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10415,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
mccon1.toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10421,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
mccon2.toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10427,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
mccon3.toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10432,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
mccon4.toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10487,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
mcrmc.toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10492,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
mcrmd.toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10497,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
mcrmf.toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10502,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
mcrmhd.toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10507,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
mcrmhe.toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10512,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
mcrmhu.toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10517,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
mcrmun.toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10522,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
mcrmu.toString()
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10534,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = e.getMessage().equals("Digits too small: -1");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10542,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = e.getMessage().equals("Digits too large: 1000000000");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10551,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = e.getMessage().equals("Bad form value: 5");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10559,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = e.getMessage().equals("Bad form value: -1");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10570,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = e.getMessage().equals("Bad roundingMode value: 12");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[10578,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
flag = e.getMessage().equals("Bad roundingMode value: -1");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[16701,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
sn = new com.ibm.icu.math.BigDecimal(sn).format(-1, 0);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[16733,12] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ( !flag)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[16754,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
testnum = "gen" + right( new com.ibm.icu.math.BigDecimal(test + 1000).toString(), 3);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/bigdec/DiagBigDecimalTest.java:[16810,15] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return new java.lang.String(new char[len - slen]).replace('\000', ' ').concat(s);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[788,30] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
+ -amount
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[357,13] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (! cal.equals(cal2)) errln("FAIL: Calendar.operator== failed");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[137,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
+ !isWeekend);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[3223,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
!quick && (type.equals("chinese") || type.equals("dangi"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/InTemporalLeapYearTest.java:[58,24] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
!hasLeapMonth && cal_year == leapTest.get(Calendar.EXTENDED_YEAR);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/compression/ExhaustiveTest.java:[423,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
aByte = byteBuffer[curByteIndex++] & 0xFF;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/compression/ExhaustiveTest.java:[426,56] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
log(Integer.toHexString( aByte & 0xFF) + " ");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/compression/ExhaustiveTest.java:[433,64] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
Integer.toHexString( byteBuffer[curByteIndex++] & 0xFF)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/compression/ExhaustiveTest.java:[438,64] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
Integer.toHexString( byteBuffer[curByteIndex++] & 0xFF)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/compression/ExhaustiveTest.java:[461,64] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
Integer.toHexString( byteBuffer[curByteIndex++] & 0xFF)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/compression/ExhaustiveTest.java:[490,64] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
Integer.toHexString( byteBuffer[curByteIndex++] & 0xFF)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/compression/ExhaustiveTest.java:[500,64] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
Integer.toHexString( byteBuffer[curByteIndex++] & 0xFF)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/compression/ExhaustiveTest.java:[505,64] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
Integer.toHexString( byteBuffer[curByteIndex++] & 0xFF)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/compression/ExhaustiveTest.java:[515,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
aByte = byteBuffer[curByteIndex++] & 0xFF;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/compression/ExhaustiveTest.java:[529,64] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
Integer.toHexString( byteBuffer[curByteIndex++] & 0xFF)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/compression/ExhaustiveTest.java:[540,64] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
Integer.toHexString( byteBuffer[curByteIndex++] & 0xFF)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/compression/ExhaustiveTest.java:[545,64] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
Integer.toHexString( byteBuffer[curByteIndex++] & 0xFF)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/compression/ExhaustiveTest.java:[568,64] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
Integer.toHexString( byteBuffer[curByteIndex++] & 0xFF)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/compression/ExhaustiveTest.java:[573,64] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
Integer.toHexString( byteBuffer[curByteIndex++] & 0xFF)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/compression/ExhaustiveTest.java:[579,56] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
log(Integer.toHexString( aByte & 0xFF) + " ");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/compression/ExhaustiveTest.java:[582,64] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
Integer.toHexString( byteBuffer[curByteIndex++] & 0xFF)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[594,61] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (!((d == null && exp.equals(new Date(-1))) || d.equals(exp)))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[839,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ( actual.getTime() == FAIL_DATE.getTime()) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateFormatRegressionTest.java:[846,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (expected.getTime() == actual.getTime()) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormatAPI.java:[51,13] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (! a.equals(b))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/NumberFormatRoundTripTest.java:[113,34] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
_test(fmt, Math.floor( randomDouble(10000)));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/SelectFormatAPITest.java:[149,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
selFmt1.format("other", strBuf, new FieldPosition(0)).toString());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/impl/UnitsTest.java:[37,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
: expected.subtract(actual).divide(expected, MathContext.DECIMAL128)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterCompare.java:[314,24] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
int count = m_hashtable_.get(s).intValue();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UTF16Test.java:[547,13] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (! strbuff.toString().equals("01234test56789")) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UTF16Test.java:[555,13] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (! str.equals("01234test56789")) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UTF16Test.java:[561,13] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (! strbuff.toString().equals("\ud800\udc0001234test\ud800\udc0056789\ud800\udc00")) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UTF16Test.java:[568,13] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (! str.equals("\ud800\udc0001234test\ud800\udc0056789\ud800\udc00")) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UTF16Test.java:[935,13] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (! strbuff.toString().equals("000000") || !(str.equals("000000"))) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UTF16Test.java:[935,55] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (!(strbuff.toString().equals("000000")) || ! str.equals("000000")) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UTF16Test.java:[941,13] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (! strbuff.toString().equals("\ud800\udc0000\ud800\udc000\ud800\udc00")) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UTF16Test.java:[948,13] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (! str.equals("\ud800\udc0000\ud800\udc000\ud800\udc00")) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[2452,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (c != ~a) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[2627,24] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (contains != intersection.equals(set2)) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[2635,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (isContained != intersection.equals(set1)) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/message2/ExpectedErrorAdapter.java:[42,23] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert name.equals("type");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/message2/TestUtils.java:[150,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
|| defaults.getExpErrors().expectErrors();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/BreakIteratorTest.java:[46,62] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
+ Integer.toHexString( work.charAt(0))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/BreakIteratorTest.java:[48,62] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
+ Integer.toHexString( work.charAt(3)));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/BreakIteratorTest.java:[73,62] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
+ Integer.toHexString( work.charAt(1))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/BreakIteratorTest.java:[75,62] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
+ Integer.toHexString( work.charAt(2)));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/RBBIMonkeyTest.java:[409,25] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
bi = BreakIterator.getCharacterInstance(fLocale);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/RBBIMonkeyTest.java:[412,25] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
bi = BreakIterator.getWordInstance(fLocale);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/RBBIMonkeyTest.java:[415,25] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
bi = BreakIterator.getLineInstance(fLocale);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/RBBIMonkeyTest.java:[418,25] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
bi = BreakIterator.getSentenceInstance(fLocale);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/RBBITest.java:[941,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
new String("!!quoted_literals_only; '#';")
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/RBBITestMonkey.java:[1425,45] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
dest.append(hexChars.charAt(( c >> bn) & 0xf));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/RBBITestMonkey.java:[1431,45] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
dest.append(hexChars.charAt(( c >> bn) & 0xf));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/PunycodeReference.java:[60,22] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return (char) cp < 0x80;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/PunycodeReference.java:[65,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return ( cp == delimiter);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/PunycodeReference.java:[93,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return ( bcp - 65 < 26);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneAliasTest.java:[395,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
int pos = id.lastIndexOf( '/');
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneBoundaryTest.java:[149,30] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
+ new Date(max)
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneBoundaryTest.java:[151,30] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
+ !startsInDST);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneBoundaryTest.java:[742,45] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
errln("Error: inDaylightTime(" + new Date(max) + ") != " + (!startsInDST));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneBoundaryTest.java:[742,73] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
errln("Error: inDaylightTime(" + (new Date(max)) + ") != " + !startsInDST);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRegressionTest.java:[225,63] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
+ 60 * testCal.get(Calendar.HOUR_OF_DAY)))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[179,13] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (! stz.hasEquivalentTransitions(rbtz1, start, until)) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[182,13] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (! stz.hasEquivalentTransitions(rbtz2, start, until)) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[185,13] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (! stz.hasEquivalentTransitions(rbtz3, start, until)) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[406,13] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (! ((BasicTimeZone) ny).hasEquivalentTransitions(rbtz, jan1_1967, jan1_2010)) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[839,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (! tzurl.equals(newvtz1.getTZURL())) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[846,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (! lastmod.equals(newvtz1.getLastModified())) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[876,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (! newtzurl.equals(newvtz2.getTZURL())) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRuleTest.java:[883,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (! lastmod.equals(newvtz2.getLastModified())) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[659,71] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
logln("Error: inDaylightTime(" + new Date(max) + ") != " + !startsInDST);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[2832,23] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
zone.getOffset( new Date().getTime(), false, offsets);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[2842,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
long now = new Date().getTime();
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[2846,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
zone.getOffset( new Date().getTime(), false, offsets);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/StringTokenizerTest.java:[62,13] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (! stdelimiterset1.nextElement().equals(str))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/StringTokenizerTest.java:[765,13] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (! us.add(UnicodeSet.MIN_VALUE + 1, UnicodeSet.MIN_VALUE).equals(us))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/StringTokenizerTest.java:[773,13] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (! us.add(UnicodeSet.MAX_VALUE, UnicodeSet.MAX_VALUE - 1).equals(us))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/StringTokenizerTest.java:[928,13] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (! us.retain("dummy").equals(us)) {
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/StringTokenizerTest.java:[1144,13] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (! res.equals("[]"))
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/TrieMapTest.java:[463,41] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
mapKeyByteSize += 8 * ((( entry.getKey().length() * 2) + 45) / 8);
icu4j/main/currdata/src/main/java/com/ibm/icu/impl/ICUCurrencyMetaInfo.java:[173,43] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return ((long) values[0] << 32) | ( values[1] & MASK);
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/BOCSU.java:[162,50] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
private static final int SLOPE_REACH_NEG_1_ = -SLOPE_SINGLE_;
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationBuilder.java:[337,43] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert isTailoredNode(nodes.elementAti(index));
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationBuilder.java:[385,23] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert false;
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationBuilder.java:[403,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert isTailoredNode(node);
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationBuilder.java:[425,23] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert isTailoredNode(nodes.elementAti(index));
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationBuilder.java:[1135,15] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert nfd.isNormalized(newNFDString);
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationBuilder.java:[1136,15] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert fcd.isNormalized(newString);
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationBuilder.java:[1137,15] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert nfd.normalize(newString).equals(newNFDString.toString());
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationBuilder.java:[1265,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert isTailoredNode(node);
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationBuilder.java:[1381,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert isTailoredNode(node);
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationBuilder.java:[1455,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert !Collation.isSpecialCE32(ce32);
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationData.java:[81,15] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert Collation.isSpecialCE32(ce32);
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationRootElements.java:[213,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert isEndOfPrimaryRange(nextElement);
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationDataBuilder.java:[697,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert !Collation.isContractionCE32(ce32);
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationDataBuilder.java:[805,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert !cond.hasContext();
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationDataBuilder.java:[874,31] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert fromBase;
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationDataBuilder.java:[1004,23] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert Collation.hasCE32Tag(ce32, Collation.HANGUL_TAG);
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationDataBuilder.java:[1071,15] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert !head.hasContext();
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationDataBuilder.java:[1388,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert Collation.hasCE32Tag(ce32, Collation.BUILDER_DATA_TAG);
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationSettings.java:[172,23] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert !reorderTableHasSplitBytes(table);
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationFastLatinBuilder.java:[225,23] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert contractionCEs.isEmpty();
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationFastLatinBuilder.java:[356,15] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert !Collation.isContractionCE32(ce32);
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationIterator.java:[118,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert !hasNext();
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationIterator.java:[651,31] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert forward;
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationIterator.java:[653,31] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert isLeadSurrogate(c);
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/ContractionsAndExpansions.java:[257,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert !Collation.isContractionCE32(ce32);
icu4j/main/collate/src/main/java/com/ibm/icu/text/RuleBasedCollator.java:[1961,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert Objects.equals(actual, valid);
icu4j/main/collate/src/main/java/com/ibm/icu/text/AlphabeticIndex.java:[590,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert s.startsWith(BASE);
icu4j/main/collate/src/main/java/com/ibm/icu/text/StringSearch.java:[1141,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ((( nextCEI.ce_ >>> 32) & 0xFFFF0000L) == 0) {
icu4j/main/collate/src/main/java/com/ibm/icu/text/StringSearch.java:[1195,33] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
&& (( nextCEI.ce_ >>> 32) & 0xFFFF0000L) != 0
icu4j/main/collate/src/main/java/com/ibm/icu/text/StringSearch.java:[1474,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
&& (( nextCEI.ce_ >>> 32) & 0xFFFF0000L) != 0
icu4j/main/collate/src/main/java/com/ibm/icu/text/StringSearch.java:[2045,23] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert false;
icu4j/main/collate/src/main/java/com/ibm/icu/text/StringSearch.java:[2088,23] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
assert false;
icu4j/main/collate/src/main/java/com/ibm/icu/util/GlobalizationPreferences.java:[284,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
String localeName = fallbacks.get(i).toString();
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationAPITest.java:[82,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
doAssert( sortk1.compareTo(sortk2) > 0, "Result should be \"Abcda\" >>> \"abcda\"");
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationAPITest.java:[86,18] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
doAssert(! sortk1.equals(sortk2), "The sort keys should be different");
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationAPITest.java:[88,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
doAssert( sortk1.equals(sortkNew), "The sort keys assignment failed");
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationAPITest.java:[195,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
doAssert( !col.equals(test1, test2), "Result should be \"Abcda\" != \"abcda\"");
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationAPITest.java:[201,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
doAssert( col.equals(test1, test2), "Result should be \"Abcda\" == \"abcda\"");
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationAPITest.java:[207,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
doAssert( col.equals(test1, test2), "Result should be \"Abcda\" == \"abcda\"");
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationAPITest.java:[293,18] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
doAssert(! iterator1.equals(iterator2), "The first iterator advance failed");
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationAPITest.java:[353,18] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
doAssert(! iterator1.equals(iterator2), "The first iterator advance failed");
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationAPITest.java:[403,18] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
doAssert(! iterator2.equals(iterator3), "The iterators should be different");
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationAPITest.java:[584,18] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
doAssert(! frCol.equals(junk), "The junk is the same as the fr_CA collator.");
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationMiscTest.java:[1679,52] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (sortorder.length > 0 && key2.toByteArray()[0] > 1) {
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationRegressionTest.java:[108,13] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (! c1.getRules().equals(c2.getRules())) {
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationRegressionTest.java:[1122,25] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
int expect = elements.get(index).intValue();
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationRegressionTest.java:[1244,50] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
sb.append(" 0x" + Integer.toHexString( bytes[i] & 0xff));
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/search/SearchTest.java:[2868,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
SearchData search = OVERLAP[count];
icu4j/main/translit/src/main/java/com/ibm/icu/text/TransliteratorRegistry.java:[421,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return en.nextElement().getString();
icu4j/main/translit/src/main/java/com/ibm/icu/text/TransliterationRule.java:[424,12] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ( (flags & ANCHOR_END) != 0) {
icu4j/main/translit/src/main/java/com/ibm/icu/text/TransliteratorParser.java:[1062,45] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (idBlockVector.size() == 1 && idBlockVector.get(0).length() == 0)
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/TransliteratorTest.java:[1010,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
DATA[i + 1].equals(FORWARD) ? Transliterator.FORWARD : Transliterator.REVERSE;
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/TransliteratorTest.java:[1021,25] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
boolean ok = newID.equals(expID);
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/TransliteratorTest.java:[1983,31] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
expect(latinToDev, source[i], (expected[i]));
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/TransliteratorTest.java:[1983,44] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
expect(latinToDev, (source[i]), expected[i]);
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/TransliteratorTest.java:[1984,31] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
expect(devToLatin, expected[i], (source[i]));
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/TransliteratorTest.java:[1984,46] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
expect(devToLatin, (expected[i]), source[i]);
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/TransliteratorTest.java:[2022,31] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
expect(latinToDev, source[i], (expected[i]));
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/TransliteratorTest.java:[2022,44] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
expect(latinToDev, (source[i]), expected[i]);
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/TransliteratorTest.java:[2023,31] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
expect(devToLatin, expected[i], (source[i]));
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/TransliteratorTest.java:[2023,46] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
expect(devToLatin, (expected[i]), source[i]);
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/TransliteratorTest.java:[2074,31] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
expect(latinToDev, source[i], (expected[i]));
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/TransliteratorTest.java:[2074,44] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
expect(latinToDev, (source[i]), expected[i]);
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/TransliteratorTest.java:[2075,31] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
expect(devToLatin, expected[i], (source[i]));
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/TransliteratorTest.java:[2075,46] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
expect(devToLatin, (expected[i]), source[i]);
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/TransliteratorTest.java:[2128,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
expect(latinToDevToLatin, source[i], (source[i]));
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/TransliteratorTest.java:[2128,51] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
expect(latinToDevToLatin, (source[i]), source[i]);
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/TransliteratorTest.java:[2129,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
expect(devToLatinToDev, expected[i], (expected[i]));
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/TransliteratorTest.java:[2129,51] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
expect(devToLatinToDev, (expected[i]), expected[i]);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetASCII.java:[356,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return UTF16.isSurrogate(ch)
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetICU.java:[248,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return (( c & 0xfffff800) == 0xd800);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetDecoderICU.java:[760,29] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return ((CharsetICU) this.charset()).maxBytesPerChar;
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetEncoderICU.java:[134,15] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return useFallback || isUnicodePrivateUse(c);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetEncoderICU.java:[139,15] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return iUseFallback || isUnicodePrivateUse(c);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetEncoderICU.java:[946,29] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return ((CharsetICU) this.charset()).maxCharsPerByte;
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[61,49] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
private static final int BOCU1_REACH_NEG_1 = -BOCU1_SINGLE;
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[97,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return (( packed & UConverterConstants.UNSIGNED_INT_MASK) < 0x04000000
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[98,18] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
? packed >> 24
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[170,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return ( trail >= BOCU1_TRAIL_CONTROLS_COUNT
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[171,18] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
? trail + BOCU1_TRAIL_BYTE_OFFSET
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[177,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return (( c & ~0x7f) + BOCU1_ASCII_PREV);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[206,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return ( c < 0x3040 || (c) > 0xd7a3 ? BOCU1_SIMPLE_PREV(c) : bocu1Prev(c));
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[206,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return ((c) < 0x3040 || c > 0xd7a3 ? BOCU1_SIMPLE_PREV(c) : bocu1Prev(c));
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[215,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return (BOCU1_REACH_NEG_1 <= diff && (diff) <= BOCU1_REACH_POS_1);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[215,47] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return (BOCU1_REACH_NEG_1 <= (diff) && diff <= BOCU1_REACH_POS_1);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[220,31] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return (BOCU1_MIDDLE + diff);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[225,37] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return (BOCU1_REACH_NEG_2 <= diff && (diff) <= BOCU1_REACH_POS_2);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[225,47] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return (BOCU1_REACH_NEG_2 <= (diff) && diff <= BOCU1_REACH_POS_2);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[270,12] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
m = (diff) % (d);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[270,18] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(m) = diff % (d);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[270,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(m) = (diff) % d;
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[271,12] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
diff /= (d);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[271,22] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(diff) /= d;
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[272,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ( m < 0) {
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[273,18] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
-- diff;
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[274,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
m += (d);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[274,23] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(m) += d;
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[341,30] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
result |= (BOCU1_START_POS_4 & UConverterConstants.UNSIGNED_INT_MASK) << 24;
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[779,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ( b <= 0x20) {
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetUTF8.java:[639,30] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return (byte) (0xe0 | (char32 >>> 12));
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetUTF8.java:[643,30] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return (byte) (0xf0 | (char32 >>> 18));
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[833,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (( ++b & 0x1f) == 0) {
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[1271,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return (( entry >> 24) & 0x7f);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[1284,15] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return entry >= 0;
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[1288,15] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return entry < 0;
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[1292,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return ( entry >>> 24);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[1296,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return ( entry & 0xffffff);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[1300,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return ( entry >>> 24) & 0x7f;
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[1304,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return ( entry < 0x80100000);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[1308,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return ( entry >>> 20) & 0xf;
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[1312,16] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return ( entry & 0xfffff);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[1316,22] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return (char) entry;
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[1320,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return (( asciiRoundtrips & (1 << ((b) >> 2))) != 0);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[1320,44] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return (((asciiRoundtrips) & (1 << ( b >> 2))) != 0);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[1349,22] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
int i = table[ c >>> 10] + ((c >>> 4) & 0x3f);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[1354,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return (( stage2Entry & (1 << (16 + ((c) & 0xf)))) != 0);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[1354,46] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return (((stage2Entry) & (1 << (16 + ( c & 0xf)))) != 0);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[1373,81] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return ((16 * (stage2Entry & UConverterConstants.UNSIGNED_SHORT_MASK) + ( c & 0xf)) * 3);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[2444,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
state = (byte) mode; /* restore the previous state */
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[2600,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
action = (byte) MBCS_ENTRY_FINAL_ACTION(entry);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[2738,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
action = (byte) MBCS_ENTRY_FINAL_ACTION(entry);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[3435,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
|| !(MBCS_FROM_U_IS_ROUNDTRIP(stage2Entry, c)
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[5435,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
st3 = stage12.get(ps2 + st2) << STAGE_2_LEFT_SHIFT;
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetISCII.java:[1858,50] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (data.currentDeltaToUnicode != TELUGU_DELTA || targetUniChar != VOCALLIC_RR) {
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetISCII.java:[2009,77] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (converterData.currentDeltaFromUnicode != TELUGU_DELTA
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetISCII.java:[2120,58] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
errorBuffer[errorBufferLength++] = (byte) targetByteUnit;
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetISO2022.java:[1262,41] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
for (int i = 0; i < - decoder.preToULength; i++) {
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetISO2022.java:[1924,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
& UConverterConstants.missingCharMarker)) {
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetLMBCS.java:[259,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
|| ( agroup == ULMBCS_AMBIGUOUS_ALL));
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetProviderICU.java:[169,15] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return CharsetICU.getCharset(icuCanonicalName + optionsString, canonicalName, aliases);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetProviderICU.java:[264,15] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return ret;
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetSCSU.java:[791,25] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
offset = c & 0x7fffff80;
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetSCSU.java:[1029,24] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ( ((c - 0x3400) & UConverterConstants.UNSIGNED_INT_MASK) < (0xd800 - 0x3400)
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetSCSU.java:[1045,31] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
} else if ( ((c - 0x3400) & UConverterConstants.UNSIGNED_INT_MASK)
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetSCSU.java:[1050,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
&& ((source.get(source.position()) - 0x3400)
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetSCSU.java:[1053,33] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (( ((c - 0x30) & UConverterConstants.UNSIGNED_INT_MASK) < 10
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetSCSU.java:[1054,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
|| ((c - 0x61) & UConverterConstants.UNSIGNED_INT_MASK) < 26
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetSCSU.java:[1055,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
|| ((c - 0x41) & UConverterConstants.UNSIGNED_INT_MASK)
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetUTF16.java:[200,42] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
| (toUBytesArray[1 ^ actualEndianXOR]
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetUTF16.java:[235,38] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
| (toUBytesArray[3 ^ actualEndianXOR]
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetUTF16.java:[324,45] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
temp[1 ^ endianXOR] = (byte) ch;
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetUTF16.java:[326,45] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
temp[3 ^ endianXOR] = (byte) trail;
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetUTF16.java:[331,45] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
temp[1 ^ endianXOR] = (byte) ch;
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetUTF32.java:[238,41] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
temp[3 ^ endianXOR] = (byte) char32;
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetUTF7.java:[89,15] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return (isLegal(c, true) && c != AMPERSAND);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetUTF7.java:[276,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
b = (char) source.get();
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetUTF7.java:[854,34] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
| bits);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/UConverterAlias.java:[648,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
int convStart = tagNum * gConverterList.length;
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestCharset.java:[92,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
bs1.put((byte) c);
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestCharset.java:[93,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
bs2.put((byte) c);
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestCharset.java:[1474,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (unistr.length() != chars.limit()) {
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestCharset.java:[2090,21] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
Charset cs = new CharsetProviderICU().charsetForName("UTF-16");
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestCharset.java:[2906,21] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
Charset cs = new CharsetProviderICU().charsetForName("UTF-32");
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestCharset.java:[3118,13] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (! encoder.encode(cb2, bb, true).isOverflow()) {
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestConversion.java:[192,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
switch ( cc.cbopt.charAt(0)) {
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestConversion.java:[510,20] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
switch ( cc.cbopt.charAt(0)) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[4612,40] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
chineseCalendar.setTimeInMillis( new Date().getTime());
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/serializable/SerializableTestUtility.java:[107,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (! zone_a.getDisplayName().equals(zone_b.getDisplayName())) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/serializable/SerializableTestUtility.java:[683,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (! TimeZone.getCanonicalID(zone_a.getID())
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[5033,29] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
int expMinFrac = roundIncrUsed ? fracForRoundIncr : item.minFrac;
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[5044,29] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
int expMaxFrac = roundIncrUsed ? fracForRoundIncr : item.maxFrac;
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[5057,34] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
double expRoundIncr = roundIncrUsed ? item.roundIncr : 0.0;
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/rbbi/LSTMBreakEngineTest.java:[64,28] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
BufferedReader br = new BufferedReader(new InputStreamReader(is, StandardCharsets.UTF_8));
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestStringPrep.java:[140,28] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
for (int i = 0; i < TestData.conformanceTestCases.length; i++) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/stringprep/TestStringPrep.java:[279,17] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (! sp.prepare("dummy", 0).equals("dummy")) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/CurrencyTest.java:[463,51] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (!info_fallback.getSpacingInfo().equals( CurrencyData.CurrencySpacingInfo.DEFAULT)
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ICUResourceBundleTest.java:[974,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
UResourceBundle a = alias.getWithFallback(resource);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/LocaleDataTest.java:[241,46] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (locale.toString().indexOf( "in") < 0) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/LocaleDataTest.java:[313,46] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (locale.toString().indexOf( "in") < 0) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ULocaleTest.java:[756,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
String testLocale = rawData2[NAME][i];
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ULocaleTest.java:[1932,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
String testLocale = rawData2[NAME][i];
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ULocaleTest.java:[1947,36] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
String testLocale = rawData2[NAME][j];
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ULocaleTest.java:[2274,28] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
for (int i = 0; i < ACCEPT_LANGUAGE_HTTP.length; i++) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ULocaleTest.java:[2286,59] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (((n == null) && (expectLocale == null)) || n.toString().equals(expectLocale)) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ULocaleTest.java:[2302,28] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
for (int i = 0; i < ACCEPT_LANGUAGE_HTTP.length; i++) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ULocaleTest.java:[2317,59] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (((n == null) && (expectLocale == null)) || n.toString().equals(expectLocale)) {
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ULocaleTest.java:[4736,19] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
return new StringBuilder(source)
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarPanel.java:[232,33] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
g.fillRect((int) width, labelHeight, d.width - width, (int) cellHeight);
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarPanel.java:[297,35] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
cellx = (int) ( col * cellWidth);
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/charsetdet/DetectingViewer.java:[383,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
mi.setAccelerator( KeyStroke.getKeyStroke(KeyEvent.VK_O, ActionEvent.CTRL_MASK));
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/charsetdet/DetectingViewer.java:[391,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
mi.setAccelerator( KeyStroke.getKeyStroke(KeyEvent.VK_U, ActionEvent.CTRL_MASK));
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/charsetdet/DetectingViewer.java:[396,26] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
mi.setAccelerator( KeyStroke.getKeyStroke(KeyEvent.VK_Q, ActionEvent.CTRL_MASK));
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/holiday/HolidayCalendarDemo.java:[594,33] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
g.fillRect((int) width, labelHeight, (int) (d.width - width), (int) cellHeight);
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/holiday/HolidayCalendarDemo.java:[611,30] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
(int) cellHeight);
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/holiday/HolidayCalendarDemo.java:[654,27] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
x = (int) ( cellPos.x * cellWidth);
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/DumbTextComponent.java:[733,22] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
char ch = contents.charAt(i);
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/number/CurrencyDemo.java:[46,51] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
HackCurrencyInfo hack = (HackCurrencyInfo) hackData.get(currency.getCurrencyCode());
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/rbnf/RbnfDemo.java:[106,60] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
String fieldText = ((TextComponent) e.getSource()).getText();
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/rbnf/RbnfDemo.java:[148,64] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
String fieldText = ((TextComponent) e.getSource()).getText();
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/rbnf/RbnfDemo.java:[175,60] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
String fieldText = ((TextComponent) e.getSource()).getText();
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/rbnf/RbnfDemo.java:[199,64] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
String fieldText = ((TextComponent) e.getSource()).getText();
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/rbnf/RbnfDemo.java:[231,60] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
String fieldText = ((TextComponent) e.getSource()).getText();
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/rbnf/RbnfDemo.java:[373,49] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
Choice source = (Choice) e.getSource();
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/rbnf/RbnfDemo.java:[622,45] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
CardLayout layout = (CardLayout) getLayout();
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/docs/CheckTags.java:[389,29] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if (! JavadocHelper.isKindClassOrInterface(element)) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/charsetdet/mbcs/BIG5Tool.java:[216,24] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ( i % 10 == 0) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/charsetdet/mbcs/EUCTool.java:[218,24] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
if ( i % 10 == 0) {
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/CollationPerformanceTest.java:[279,39] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
opt_loopCount * 3000 / (Math.log(tests.length) / Math.log(10) * tests.length);
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/CollationPerformanceTest.java:[499,32] These grouping parentheses are unnecessary; it is unlikely the code will be misinterpreted without them
Did you mean
int ns = (int) ((float) 1000000 * (float) elapsedTime / (float) gCount);

[ICU_PRIORITY_2] UnnecessaryStringBuilder (36) 🔗

File and line number Message
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/impl/UnitsTest.java:[725,41] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
testCase.category + ": Converting 1000 " + testCase.sourceString + " to " + testCase.targetString + ", got " + got + ", expected " + testCase.expected.toString());
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/impl/UnitsTest.java:[741,41] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
"Converting back to " + testCase.sourceString + " from " + testCase.targetString + ": got " + inverted + ", expected 1000");
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[3125,32] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
UnicodeSet.from("abc"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[3129,35] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
UnicodeSet.fromAll("abc"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[3133,47] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
Math.signum(UnicodeSet.compare("abc", 0x61)));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[3137,53] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
Math.signum(UnicodeSet.compare(0x61, "abc")));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[3141,47] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
Math.signum(UnicodeSet.compare("a", 0x61)));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[3145,53] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
Math.signum(UnicodeSet.compare(0x61, "a")));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[3149,46] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
UnicodeSet.getSingleCodePoint("👦"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[3185,49] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
new UnicodeSet("[a-cA{qr}]").add("abc"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[3189,57] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
new UnicodeSet("[a-cA{abc}{qr}]").retain("abc"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[3193,57] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
new UnicodeSet("[a-cA{abc}{qr}]").remove("abc"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[3197,61] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
new UnicodeSet("[a-cA{abc}{qr}]").complement("abc"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[3201,56] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
new UnicodeSet("[a-cA{qr}]").complement("abc"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[3206,48] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
new UnicodeSet("[a-cA]").addAll("ABC"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[3210,51] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
new UnicodeSet("[a-cA]").retainAll("abcB"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[3214,51] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
new UnicodeSet("[a-cA]").removeAll("cC"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[3218,55] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
new UnicodeSet("[a-cA]").complementAll("aB"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[3224,54] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
new UnicodeSet("[a-cA{ab}]").contains("ab"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[3228,54] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
new UnicodeSet("[a-cA]").containsNone("ab"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[3232,58] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
new UnicodeSet("[a-cA{ab}]").containsSome("ab"));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[3238,46] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
new UnicodeSet("[a-cA]").span("abc", SpanCondition.SIMPLE));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[3242,46] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
new UnicodeSet("[a-cA]").span("abc", 1, SpanCondition.SIMPLE));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[3246,50] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
new UnicodeSet("[a-cA]").spanBack("abc", SpanCondition.SIMPLE));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[3251,34] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
.spanBack("abc", 1, SpanCondition.SIMPLE));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[3258,51] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
new UnicodeSet("[a-cA]").matchesAt("abc", 1));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[3263,38] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
.spanAndCount("abc", 1, SpanCondition.SIMPLE, outCount));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[3267,48] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
new UnicodeSet("[a-cA]").findIn("abc", 1, true));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[3271,52] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
new UnicodeSet("[a-cA]").findLastIn("abc", 1, true));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[3275,50] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
new UnicodeSet("[abA]").stripFrom("abc", true));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UnicodeSetTest.java:[3319,46] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
unicodeSet.addAll(new CharSequence[] {"foo", new StringBuffer("bar")});
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationDataBuilder.java:[225,37] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
((char) prefix.length()) + prefix + suffix;
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationDataBuilder.java:[352,58] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
return getCEs(prefix + s, prefixLength, ces, cesLength);
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/TailoredSet.java:[358,21] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
tailored.add(unreversedPrefix.appendCodePoint(c));
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationAPITest.java:[879,29] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
col1.compare("abc", new StringBuilder("abc")));
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationAPITest.java:[879,55] Prefer string concatenation over explicitly using `StringBuilder#append`, since `+` reads better and has equivalent or better performance.
Did you mean
col1.compare(new StringBuilder("abc"), "abc"));

[WARNING] UnrecognisedJavadocTag (2) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/impl/JavaTimeConverters.java:[258,46] This Javadoc tag wasn't recognised by the parser. Is it malformed somehow, perhaps with mismatched braces?
icu4j/main/core/src/main/java/com/ibm/icu/impl/JavaTimeConverters.java:[282,91] This Javadoc tag wasn't recognised by the parser. Is it malformed somehow, perhaps with mismatched braces?

[ICU_PRIORITY_2] UnsynchronizedOverridesSynchronized [FragileCode] (2) 🔗

File and line number Message
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/rbnf/RbnfDemo.java:[594,16] Unsynchronized method addFocusListener overrides synchronized method in Component
Did you mean
public synchronized void addFocusListener(FocusListener l) {
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/rbnf/RbnfDemo.java:[599,16] Unsynchronized method addKeyListener overrides synchronized method in Component
Did you mean
public synchronized void addKeyListener(KeyListener l) {

[ICU_PRIORITY_1] UnusedMethod (16) 🔗

File and line number Message
icu4j/main/core/src/main/java/com/ibm/icu/text/PluralRules.java:[870,16] Constructor 'FixedDecimal' is never used.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/impl/breakiter/LSTMBreakEngine.java:[273,24] Method 'addTo' is never used.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/message2/MFParser.java:[838,19] Method 'peekWithRegExp' is never used.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/text/DateTimePatternGenerator.java:[228,17] Method 'consumeShortTimePattern' is never used.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/util/IslamicCalendar.java:[1276,17] Method 'yearStart' is never used.
Did you mean to remove this line?
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/calendar/CalendarFrame.java:[342,15] Constructor 'ColoredLabel' is never used.
Did you mean to remove this line?
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/holiday/HolidayCalendarDemo.java:[434,22] Method 'getCalendarLocale' is never used.
Did you mean to remove this line?
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/holiday/HolidayCalendarDemo.java:[129,13] Method 'addWithFont' is never used.
Did you mean to remove this line?
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/holiday/HolidayCalendarDemo.java:[361,20] Method 'errorText' is never used.
Did you mean to remove this line?
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/coverage/JacocoReportCheck.java:[311,12] Method 'covered' is never used.
Did you mean to remove this line?
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/coverage/JacocoReportCheck.java:[362,16] Method 'branchCounter' is never used.
Did you mean to remove this line?
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/coverage/JacocoReportCheck.java:[366,16] Method 'lineCounter' is never used.
Did you mean to remove this line?
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/coverage/JacocoReportCheck.java:[370,16] Method 'complexityCounter' is never used.
Did you mean to remove this line?
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/coverage/JacocoReportCheck.java:[354,12] Method 'line' is never used.
Did you mean to remove this line?
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/coverage/JacocoReportCheck.java:[394,15] Method 'cls' is never used.
Did you mean to remove this line?
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/coverage/JacocoReportCheck.java:[358,16] Method 'instructionCounter' is never used.
Did you mean to remove this line?

[ICU_PRIORITY_1] UnusedVariable (286) 🔗

File and line number Message
icu4j/tools/taglets/src/main/java/com/ibm/icu/dev/tool/docs/ICUBugTaglet.java:[10,29] The field 'singleton' is never read.
Did you mean to remove this line?
icu4j/tools/taglets/src/main/java/com/ibm/icu/dev/tool/docs/ICUSummaryTaglet.java:[10,29] The field 'singleton' is never read.
Did you mean to remove this line?
icu4j/tools/taglets/src/main/java/com/ibm/icu/dev/tool/docs/ICUTestTaglet.java:[10,29] The field 'singleton' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[795,12] This assignment to the local variable 'cmp' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[4212,19] This assignment to the local variable 'script' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/util/ULocale.java:[3169,23] The local variable 'parser' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/util/Currency.java:[714,15] This assignment to the local variable 'isoResult' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/util/Currency.java:[713,12] This assignment to the local variable 'maxLength' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/impl/EmojiProps.java:[83,16] This assignment to the local variable 'offset' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/impl/ICUBinary.java:[296,77] The parameter 'files' is never read.
Did you mean
addDataFilesFromPath(dataPath);
icu4j/main/core/src/main/java/com/ibm/icu/impl/Normalizer2Impl.java:[547,19] This assignment to the local variable 'offset' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/impl/ICUResourceBundleReader.java:[211,56] The parameter 'localeID' is never read.
Did you mean
ByteBuffer inBytes, String baseName, ClassLoader loader)
icu4j/main/core/src/main/java/com/ibm/icu/impl/ICUResourceBundle.java:[133,26] This assignment to the local variable 'r' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/impl/ICUResourceBundle.java:[1372,46] The field 'COMPARE_FIRST_ELEMENT' is never read.
Did you mean to remove this line or 'static { new Comparator<String[]>() {'?
icu4j/main/core/src/main/java/com/ibm/icu/text/TimeZoneFormat.java:[2302,12] This assignment to the local variable 'offset' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/text/TimeZoneFormat.java:[2413,66] The parameter 'isShort' is never read.
Did you mean
offset = parseOffsetFields(text, idx, offsetLen);
icu4j/main/core/src/main/java/com/ibm/icu/text/TimeZoneFormat.java:[2367,44] The parameter 'isShort' is never read.
Did you mean
offset = parseOffsetLocalizedGMTPattern(text, start, parsedLength);
icu4j/main/core/src/main/java/com/ibm/icu/text/TimeZoneFormat.java:[2099,36] The parameter 'type' is never read.
Did you mean
static boolean isValid(int width) {
icu4j/main/core/src/main/java/com/ibm/icu/text/TimeZoneFormat.java:[3297,45] The field 'serialPersistentFields' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/text/Normalizer.java:[454,37] The parameter 'value' is never read.
Did you mean
private QuickCheckResult() {
icu4j/main/core/src/main/java/com/ibm/icu/impl/PropsVectors.java:[64,12] This assignment to the local variable 'index' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/text/SimpleDateFormat.java:[3351,21] This assignment to the local variable 'currentNumberFormat' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/text/SimpleDateFormat.java:[3297,26] The parameter 'numericLeapMonthFormatter' is never read.
Did you mean
cal,
icu4j/main/core/src/main/java/com/ibm/icu/text/SimpleDateFormat.java:[3298,29] The parameter 'tzTimeType' is never read.
Did you mean
numericLeapMonthFormatter);
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[2140,17] This assignment to the local variable 'swWeekdays' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[2146,17] This assignment to the local variable 'saWeekdays' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[2152,17] This assignment to the local variable 'ssWeekdays' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/text/DateFormatSymbols.java:[2158,17] This assignment to the local variable 'snWeekdays' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/impl/UCharacterName.java:[77,15] This assignment to the local variable 'result' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/impl/UCharacterProperty.java:[754,28] The parameter 'which' is never read.
Did you mean
int getMaxValue() {
icu4j/main/core/src/main/java/com/ibm/icu/impl/ZoneMeta.java:[698,16] This assignment to the local variable 'hour' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/impl/breakiter/DictionaryBreakEngine.java:[188,12] This assignment to the local variable 'result' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/impl/breakiter/LSTMBreakEngine.java:[345,16] The local variable 'hU' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/message2/DateTimeFunctionFactory.java:[49,23] The local variable 'dir' is never read.
Did you mean to remove this line or 'OptUtils.getBestDirectionality(fixedOptions, locale);'?
icu4j/main/core/src/main/java/com/ibm/icu/message2/DateTimeFunctionFactory.java:[206,29] The field 'locale' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/message2/MFDataModelFormatter.java:[180,16] This assignment to the local variable 'patternToRender' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/message2/MFParser.java:[738,23] This assignment to the local variable 'inputVarName' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/message2/MFParser.java:[529,12] The local variable 'position' is never read.
Did you mean to remove this line or 'input.getPosition();'?
icu4j/main/core/src/main/java/com/ibm/icu/message2/NumberFunctionFactory.java:[549,22] The field 'reportErrors' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/message2/NumberFunctionFactory.java:[222,20] The local variable 'reportErrors' is never read.
Did you mean to remove this line or 'OptUtils.reportErrors(fixedOptions);'?
icu4j/main/core/src/main/java/com/ibm/icu/message2/NumberFunctionFactory.java:[97,20] The local variable 'fancy' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/text/ArabicShaping.java:[2044,12] This assignment to the local variable 'yehHamzaComposeEnabled' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/text/ArabicShaping.java:[2045,12] This assignment to the local variable 'seenComposeEnabled' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/text/ArabicShaping.java:[2079,69] This assignment to the parameter 'destSize' is never read.
icu4j/main/core/src/main/java/com/ibm/icu/text/Bidi.java:[1741,13] This assignment to the local variable 'defaultParaLevel' is never read.
Did you mean
/* initialize to avoid compiler warnings */
icu4j/main/core/src/main/java/com/ibm/icu/text/RelativeDateTimeFormatter.java:[1573,56] The parameter 'key' is never read.
Did you mean
private void handlePlainDirection(UResource.Value value) {
icu4j/main/core/src/main/java/com/ibm/icu/text/RelativeDateTimeFormatter.java:[1611,83] The parameter 'noFallback' is never read.
Did you mean
private void handleAlias(UResource.Key key, UResource.Value value) {
icu4j/main/core/src/main/java/com/ibm/icu/text/RuleBasedBreakIterator.java:[968,12] This assignment to the local variable 'result' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/text/RuleBasedBreakIterator.java:[1569,16] This assignment to the local variable 'pos' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/text/RuleBasedBreakIterator.java:[1570,16] This assignment to the local variable 'ruleStatusIdx' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/text/SimplePersonName.java:[268,15] The local variable 'fieldName' is never read.
Did you mean to remove this line or 'tok.nextToken();'?
icu4j/main/core/src/main/java/com/ibm/icu/util/StringTrieBuilder.java:[217,47] The parameter 'builder' is never read.
Did you mean
root = root.register();
icu4j/main/core/src/main/java/com/ibm/icu/util/StringTrieBuilder.java:[205,82] The parameter 'sValue' is never read.
Did you mean
root = root.add(this, s, 0);
icu4j/main/core/src/main/java/com/ibm/icu/util/StringTrieBuilder.java:[205,42] The parameter 'builder' is never read.
Did you mean
root = root.add(s, 0, value);
icu4j/main/core/src/main/java/com/ibm/icu/util/StringTrieBuilder.java:[205,71] The parameter 'start' is never read.
Did you mean
root = root.add(this, s, value);
icu4j/main/core/src/main/java/com/ibm/icu/util/StringTrieBuilder.java:[205,64] The parameter 's' is never read.
Did you mean
root = root.add(this, 0, value);
icu4j/main/core/src/main/java/com/ibm/icu/util/CECalendar.java:[204,12] The local variable 'era' is never read.
Did you mean
year;
icu4j/main/core/src/main/java/com/ibm/icu/util/CECalendar.java:[204,17] The local variable 'year' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/util/IslamicCalendar.java:[641,17] The local variable 'monthStart' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/util/Region.java:[164,24] This assignment to the local variable 'metadataAlias' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/util/Region.java:[165,24] This assignment to the local variable 'territoryAlias' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/util/Region.java:[166,24] This assignment to the local variable 'codeMappings' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/util/Region.java:[167,24] This assignment to the local variable 'idValidity' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/util/Region.java:[168,24] This assignment to the local variable 'regionList' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/util/Region.java:[169,24] This assignment to the local variable 'regionRegular' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/util/Region.java:[170,24] This assignment to the local variable 'regionMacro' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/util/Region.java:[171,24] This assignment to the local variable 'regionUnknown' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/util/Region.java:[173,24] This assignment to the local variable 'territoryContainment' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/util/Region.java:[172,24] This assignment to the local variable 'worldContainment' is never read.
Did you mean to remove this line?
icu4j/main/core/src/main/java/com/ibm/icu/util/Region.java:[174,24] This assignment to the local variable 'groupingContainment' is never read.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/UnicodeMapTest.java:[357,27] This assignment to the local variable 'map1' is never read.
Did you mean to remove this line or 'new UnicodeMap<>();'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/UnicodeMapTest.java:[358,29] This assignment to the local variable 'map2' is never read.
Did you mean to remove this line or 'new HashMap<Integer, String>();'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/UnicodeMapTest.java:[426,83] The parameter 'limit' is never read.
Did you mean
checkNext(map1, map2);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CalendarRegressionTest.java:[2526,33] This assignment to the local variable 'testMillis' is never read.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[472,8] This assignment to the local variable 'cal' is never read.
Did you mean to remove this line or 'Calendar.getInstance(TimeZone.getDefault(), Locale.ENGLISH);'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[478,26] This assignment to the local variable 'gc' is never read.
Did you mean to remove this line or 'new GregorianCalendar(zone);'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/CompatibilityTest.java:[1085,26] This assignment to the local variable 'calendar' is never read.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[3302,20] The local variable 'month' is never read.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[3301,20] The local variable 'year' is never read.
Did you mean to remove this line or 'base.get(Calendar.YEAR);'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[1129,27] The local variable 'astro' is never read.
Did you mean to remove this line or 'new CalendarAstronomer();'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[3303,20] The local variable 'date' is never read.
Did you mean to remove this line or 'base.get(Calendar.DATE);'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java:[278,15] The local variable 'l' is never read.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/InTemporalLeapYearTest.java:[189,17] The local variable 'leapTest' is never read.
Did you mean to remove this line or 'cal.clone();'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/PersianTest.java:[223,16] The local variable 'jday' is never read.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/PersianTest.java:[603,20] The local variable 'pLeap' is never read.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/PersianTest.java:[559,20] The local variable 'pLeap' is never read.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/compression/DecompressionTest.java:[41,12] This assignment to the local variable 'count1' is never read.
Did you mean
count2 = 0;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/compression/DecompressionTest.java:[41,24] This assignment to the local variable 'count2' is never read.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/compression/ExhaustiveTest.java:[59,12] This assignment to the local variable 'myByteCount' is never read.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/compression/ExhaustiveTest.java:[60,12] This assignment to the local variable 'myCharCount' is never read.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DataDrivenNumberFormatTestUtility.java:[150,28] The parameter 'fileName' is never read.
Did you mean
.run(RunMode.SKIP_KNOWN_FAILURES);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateIntervalFormatTest.java:[2601,75] The parameter 'locName' is never read.
Did you mean
testLocale[localeIndex][2]));
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateTimeGeneratorTest.java:[1317,13] This assignment to the local variable 'dtpg' is never read.
Did you mean to remove this line or 'dtpg2.clone();'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/DateTimeGeneratorTest.java:[1440,11] This assignment to the local variable 'dt' is never read.
Did you mean to remove this line or 'dt.cloneAsThawed();'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormatAPI.java:[105,15] This assignment to the local variable 'res3' is never read.
Did you mean to remove this line or 'new String();'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormatAPI.java:[123,15] This assignment to the local variable 'result1' is never read.
Did you mean to remove this line or 'new Date();'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormatAPI.java:[125,13] This assignment to the local variable 'result3' is never read.
Did you mean to remove this line or 'new Date();'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDateFormatSymbols.java:[561,13] This assignment to the local variable 'rowCount' is never read.
Did you mean
columnCount = 0;
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDecimalFormatAPI.java:[229,13] This assignment to the local variable 'multiplier' is never read.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestDecimalFormatAPI.java:[237,12] This assignment to the local variable 'groupingSize' is never read.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestNumberFormatAPI.java:[86,15] This assignment to the local variable 'res1' is never read.
Did you mean to remove this line or 'new String();'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestNumberFormatAPI.java:[87,15] This assignment to the local variable 'res2' is never read.
Did you mean to remove this line or 'new String();'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/IntlTestSimpleDateFormatAPI.java:[96,13] This assignment to the local variable 'result1' is never read.
Did you mean to remove this line or 'new Date();'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/JavaTimeConvertersTest.java:[142,14] The local variable 'DATE_OF_WEEK_ONLY_FIELD' is never read.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/JavaTimeConvertersTest.java:[146,14] The local variable 'MONTH_ONLY_FIELD' is never read.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/MessageRegressionTest.java:[927,22] This assignment to the local variable 'format1' is never read.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/MessageRegressionTest.java:[928,22] This assignment to the local variable 'format2' is never read.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/MessageRegressionTest.java:[955,26] The local variable 'format' is never read.
Did you mean to remove this line or 'new MessageFormat("{90000000000}");'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/NumberFormatRoundTripTest.java:[41,21] This assignment to the local variable 'fmt' is never read.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/RBNFParseTest.java:[204,34] The local variable 'rbnf' is never read.
Did you mean to remove this line or 'new RuleBasedNumberFormat("x00:>%>>;%:;<0<<", Locale.US);'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/RBNFParseTest.java:[214,34] The local variable 'rbnf' is never read.
Did you mean to remove this line or 'new RuleBasedNumberFormat("x00:a>>>b>#>", Locale.US);'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/RBNFParseTest.java:[168,34] The local variable 'rbnf' is never read.
Did you mean to remove this line or 'new RuleBasedNumberFormat('?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/RBNFParseTest.java:[198,34] The local variable 'rbnf' is never read.
Did you mean to remove this line or 'new RuleBasedNumberFormat("x00:>%>>;%;<0<<", Locale.US);'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/RBNFParseTest.java:[224,34] The local variable 'rbnf' is never read.
Did you mean to remove this line or 'new RuleBasedNumberFormat("7060920374060940374/4:[]");'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/SelectFormatAPITest.java:[42,21] This assignment to the local variable 'selFmt1' is never read.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/SelectFormatAPITest.java:[70,21] This assignment to the local variable 'selFmt' is never read.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/format/SelectFormatAPITest.java:[96,21] This assignment to the local variable 'selFmt' is never read.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/DataDrivenUScriptTest.java:[433,16] This assignment to the local variable 'code' is never read.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/lang/UCharacterTest.java:[352,13] This assignment to the local variable 'size' is never read.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/normalizer/NormalizerBuilder.java:[251,19] The parameter 'isExcluded' is never read.
Did you mean
setMinimalDecomp(canonicalClass, decompose, compose, isCompatibility);
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/RBBIAPITest.java:[543,39] The local variable 'bi' is never read.
Did you mean to remove this line or 'new RuleBasedBreakIterator(new String(array));'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/RBBIAPITest.java:[550,43] The local variable 'bi' is never read.
Did you mean to remove this line or 'new RuleBasedBreakIterator(new String(array));'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/RBBIAPITest.java:[530,35] The local variable 'bi' is never read.
Did you mean to remove this line or 'new RuleBasedBreakIterator("'");'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/RBBILSTMTest.java:[43,15] The local variable 'testString' is never read.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/RBBILSTMTest.java:[54,24] The local variable 'engine' is never read.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/RBBILSTMTest.java:[72,24] The local variable 'length' is never read.
Did you mean to remove this line or 'fields[1].length();'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/RBBITest.java:[1129,35] The local variable 'bi' is never read.
Did you mean to remove this line or 'new RuleBasedBreakIterator(rules);'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/RBBITest.java:[1144,35] The local variable 'bi' is never read.
Did you mean to remove this line or 'new RuleBasedBreakIterator("A{77777777777777};");'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/RBBITest.java:[1157,31] The local variable 'bi3' is never read.
Did you mean to remove this line or 'new RuleBasedBreakIterator("A{2147483647};");'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/RBBITest.java:[1151,35] The local variable 'bi2' is never read.
Did you mean to remove this line or 'new RuleBasedBreakIterator("A{2147483648};");'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/rbbi/RBBITestMonkey.java:[177,29] The field 'text' is never read.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/segmenter/SegmentsTest.java:[384,28] The local variable 'segment' is never read.
Did you mean to remove this line or 'segments1.segmentAt(startIdx);'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/stringprep/IDNAConformanceTest.java:[50,21] The local variable 'keyMap' is never read.
Did you mean to remove this line or 'inputData.keySet();'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/text/SpoofCheckerTest.java:[241,21] This assignment to the local variable 'allowedLocales' is never read.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/text/SpoofCheckerTest.java:[242,20] This assignment to the local variable 'allowedJavaLocales' is never read.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/text/SpoofCheckerTest.java:[270,8] This assignment to the local variable 'sc' is never read.
Did you mean to remove this line or 'new SpoofChecker.Builder()'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRegressionTest.java:[700,17] This assignment to the local variable 'z' is never read.
Did you mean to remove this line or to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneRegressionTest.java:[1031,23] This assignment to the local variable 'zone' is never read.
Did you mean to remove this line or to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[2842,13] The local variable 'now' is never read.
Did you mean to remove this line or '(new Date()).getTime();'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timezone/TimeZoneTest.java:[609,11] This assignment to the local variable 'gc' is never read.
Did you mean to remove this line or 'new GregorianCalendar(zone);'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/CodePointTrieTest.java:[496,20] The parameter 'withSwap' is never read.
Did you mean
CodePointTrie.ValueWidth valueWidth,
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/CodePointTrieTest.java:[256,37] The parameter 'valueWidth' is never read.
Did you mean
CodePointTrie.Type type,
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/CodePointTrieTest.java:[382,37] The parameter 'valueWidth' is never read.
Did you mean
CodePointTrie trie,
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/CodePointTrieTest.java:[1137,20] This assignment to the local variable 'mutableTrie' is never read.
Did you mean to remove this line or 'testTrieSerializeAllValueWidth("short-all-same", mutableTrie, false, checkRanges);'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/ICUServiceThreadTest.java:[344,25] The local variable 'iter' is never read.
Did you mean to remove this line or 'locales.iterator();'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/LocaleMatcherTest.java:[917,13] This assignment to the local variable 't' is never read.
Did you mean to remove this line or 'timeMaximize(list, few);'?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/StringTokenizerTest.java:[203,8] This assignment to the local variable 'delimiter' is never read.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/Trie2Test.java:[569,12] This assignment to the local variable 'initialValue' is never read.
Did you mean to remove this line?
icu4j/main/core/src/test/java/com/ibm/icu/dev/test/util/Trie2Test.java:[714,20] The parameter 'withClone' is never read.
Did you mean
String serializedName,
icu4j/main/currdata/src/main/java/com/ibm/icu/impl/ICUCurrencyDisplayInfoProvider.java:[514,61] The parameter 'key' is never read.
Did you mean
consumeCurrenciesVariantEntry(value);
icu4j/main/currdata/src/main/java/com/ibm/icu/impl/ICUCurrencyMetaInfo.java:[168,73] The parameter 'endOfDay' is never read.
Did you mean
from = getDate(r.at("from"), Long.MIN_VALUE);
icu4j/main/collate/src/main/java/com/ibm/icu/impl/coll/CollationFastLatin.java:[724,51] The parameter 'c' is never read.
Did you mean
long pairAndInc = nextPair(table, leftPair, left, leftIndex);
icu4j/main/collate/src/main/java/com/ibm/icu/text/RuleBasedCollator.java:[1927,62] The parameter 'buffer' is never read.
Did you mean
releaseCollationBuffer();
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationAPITest.java:[215,17] This assignment to the local variable 'en_US' is never read.
Did you mean
el_GR = null, vi_VN = null;
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationAPITest.java:[215,31] This assignment to the local variable 'el_GR' is never read.
Did you mean
vi_VN = null;
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationAPITest.java:[215,45] This assignment to the local variable 'vi_VN' is never read.
Did you mean to remove this line?
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationAPITest.java:[282,12] This assignment to the local variable 'offset' is never read.
Did you mean to remove this line?
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationFrozenMonkeyTest.java:[251,8] This assignment to the local variable 'newRules' is never read.
Did you mean to remove this line?
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationMiscTest.java:[911,12] This assignment to the local variable 'size' is never read.
Did you mean to remove this line?
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationMiscTest.java:[1721,12] This assignment to the local variable 'varTopOriginal' is never read.
Did you mean
varTop1, varTop2;
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationMiscTest.java:[1892,17] This assignment to the local variable 'coll' is never read.
Did you mean to remove this line or 'new RuleBasedCollator(rule);'?
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationMiscTest.java:[3649,24] This assignment to the local variable 'exceptionCaught' is never read.
Did you mean to remove this line?
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationMonkeyTest.java:[226,8] This assignment to the local variable 'newRules' is never read.
Did you mean to remove this line?
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationRegressionTest.java:[320,17] This assignment to the local variable 'c' is never read.
Did you mean to remove this line?
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationRegressionTest.java:[1309,30] The local variable 'coll' is never read.
Did you mean to remove this line or 'new RuleBasedCollator(rule);'?
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationRegressionTest.java:[1286,34] The local variable 'coll' is never read.
Did you mean to remove this line or 'new RuleBasedCollator(rule.substring(0, i));'?
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/CollationTest.java:[210,21] The parameter 'test' is never read.
Did you mean
doTestVariant(col, source, target, result);
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/UCAConformanceTest.java:[173,62] The parameter 'flags' is never read.
Did you mean
private static boolean skipLineBecauseOfBug(String s) {
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/collator/UCAConformanceTest.java:[173,55] The parameter 's' is never read.
Did you mean
private static boolean skipLineBecauseOfBug(int flags) {
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/format/GlobalizationPreferencesTest.java:[986,12] This assignment to the local variable 'brk' is never read.
Did you mean to remove this line or 'gp1.getBreakIterator(GlobalizationPreferences.BI_WORD);'?
icu4j/main/collate/src/test/java/com/ibm/icu/dev/test/util/ICUResourceBundleCollationTest.java:[227,16] The local variable 'equivLocale2' is never read.
Did you mean to remove this line or 'ICUResourceBundle.getFunctionalEquivalent('?
icu4j/main/translit/src/main/java/com/ibm/icu/text/TransliteratorParser.java:[1304,41] The parameter 'backup' is never read.
Did you mean
private void pragmaMaximumBackup() {
icu4j/main/translit/src/main/java/com/ibm/icu/text/TransliteratorParser.java:[1316,54] The parameter 'mode' is never read.
Did you mean
private void pragmaNormalizeRules() {
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/ErrorTest.java:[36,12] This assignment to the local variable 'stoppedAt' is never read.
Did you mean
len;
icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/JamoTest.java:[197,23] This assignment to the local variable 't' is never read.
Did you mean to remove this line?
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetASCII.java:[361,84] The parameter 'flush' is never read.
Did you mean
cr = encodeTrail(source, (char) fromUChar32);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetEncoderICU.java:[820,20] This assignment to the local variable 'cr' is never read.
Did you mean to remove this line?
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[471,77] The parameter 'offsets' is never read.
Did you mean
labelType = getTrail(source, target);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[1052,59] The parameter 'target' is never read.
Did you mean
endLoop(source, offsets);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[1052,77] The parameter 'offsets' is never read.
Did you mean
endLoop(source, target);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[471,59] The parameter 'target' is never read.
Did you mean
labelType = getTrail(source, offsets);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[892,77] The parameter 'offsets' is never read.
Did you mean
labelType = getTrail(source, target);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[1052,40] The parameter 'source' is never read.
Did you mean
endLoop(target, offsets);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetBOCU1.java:[892,59] The parameter 'target' is never read.
Did you mean
labelType = getTrail(source, offsets);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[314,33] This assignment to the local variable 'baseSharedData' is never read.
Did you mean to remove this line?
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetMBCS.java:[2060,16] This assignment to the local variable 'match' is never read.
Did you mean to remove this line?
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetISCII.java:[1852,53] This assignment to the parameter 'targetUniChar' is never read.
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetISCII.java:[1891,18] This assignment to the local variable 'newDelta' is never read.
Did you mean to remove this line?
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetISCII.java:[1892,18] This assignment to the local variable 'range' is never read.
Did you mean to remove this line?
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetISCII.java:[2019,37] This assignment to the local variable 'temp' is never read.
Did you mean to remove this line?
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetISCII.java:[1825,27] The parameter 'source' is never read.
Did you mean
(source.position() - 1),
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetISO2022.java:[252,13] This assignment to the local variable 'mySource' is never read.
Did you mean to remove this line?
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetISO2022.java:[2400,24] This assignment to the local variable 'err' is never read.
Did you mean to remove this line?
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetISO2022.java:[2977,24] This assignment to the local variable 'err' is never read.
Did you mean to remove this line?
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetISO2022.java:[3443,24] This assignment to the local variable 'err' is never read.
Did you mean to remove this line?
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetSCSU.java:[1218,40] The parameter 'source' is never read.
Did you mean
endLoop(target, offsets);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetSCSU.java:[1142,66] The parameter 'target' is never read.
Did you mean
labelType = getTrailUnicode(source, offsets);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetSCSU.java:[601,77] The parameter 'offsets' is never read.
Did you mean
endLoop(source, target);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetSCSU.java:[1218,59] The parameter 'target' is never read.
Did you mean
endLoop(source, offsets);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetSCSU.java:[1142,84] The parameter 'offsets' is never read.
Did you mean
labelType = getTrailUnicode(source, target);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetSCSU.java:[1218,77] The parameter 'offsets' is never read.
Did you mean
endLoop(source, target);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetSCSU.java:[1117,59] The parameter 'target' is never read.
Did you mean
label = getTrail(source, offsets);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetSCSU.java:[1227,43] The parameter 'source' is never read.
Did you mean
labelType = outputBytes(target, offsets);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetSCSU.java:[601,40] The parameter 'source' is never read.
Did you mean
endLoop(target, offsets);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetSCSU.java:[1117,77] The parameter 'offsets' is never read.
Did you mean
label = getTrail(source, target);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetSCSU.java:[601,59] The parameter 'target' is never read.
Did you mean
endLoop(source, offsets);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/CharsetUTF16.java:[214,64] The parameter 'offsets' is never read.
Did you mean
CoderResult cr = decodeTrail(source, target, (char) toUnicodeStatus);
icu4j/main/charset/src/main/java/com/ibm/icu/charset/UConverterAlias.java:[122,18] This assignment to the local variable 'tableArray' is never read.
Did you mean to remove this line?
icu4j/main/charset/src/main/java/com/ibm/icu/charset/UConverterAlias.java:[121,23] This assignment to the local variable 'data' is never read.
Did you mean to remove this line?
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestCharset.java:[2176,24] This assignment to the local variable 'result' is never read.
Did you mean to remove this line?
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestCharset.java:[2331,24] This assignment to the local variable 'result' is never read.
Did you mean to remove this line?
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestCharset.java:[2800,20] This assignment to the local variable 'result' is never read.
Did you mean to remove this line or 'decoder.decode(ByteBuffer.wrap(new byte[] {-1, -2, 32, 0, 98}), out, false);'?
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestCharset.java:[3011,17] This assignment to the local variable 'names' is never read.
Did you mean to remove this line?
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestCharset.java:[3126,20] This assignment to the local variable 'result' is never read.
Did you mean to remove this line or to remove this line?
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestCharset.java:[4876,20] This assignment to the local variable 'result' is never read.
Did you mean to remove this line?
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestCharset.java:[5004,20] This assignment to the local variable 'result' is never read.
Did you mean to remove this line or to remove this line?
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestCharset.java:[5079,20] This assignment to the local variable 'result' is never read.
Did you mean to remove this line?
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestCharset.java:[5316,20] This assignment to the local variable 'result' is never read.
Did you mean to remove this line?
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestCharset.java:[5564,20] This assignment to the local variable 'result' is never read.
Did you mean to remove this line or to remove this line?
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestCharset.java:[5912,20] This assignment to the local variable 'result' is never read.
Did you mean to remove this line or to remove this line?
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestCharset.java:[5982,20] This assignment to the local variable 'result' is never read.
Did you mean to remove this line?
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestCharset.java:[6003,20] This assignment to the local variable 'result' is never read.
Did you mean to remove this line?
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestCharset.java:[6024,20] This assignment to the local variable 'result' is never read.
Did you mean to remove this line or to remove this line?
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestCharset.java:[6207,20] This assignment to the local variable 'result' is never read.
Did you mean to remove this line?
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestCharset.java:[6585,20] This assignment to the local variable 'illegalResult' is never read.
Did you mean to remove this line?
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestCharset.java:[2295,20] The parameter 'backedByArray' is never read.
Did you mean
smBufEncode(encoder, converter, us, bs, true, false);
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestCharset.java:[2990,20] The parameter 'backedByArray' is never read.
Did you mean
smBufEncode(encoder, converter, us, bs);
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestConversion.java:[458,60] The parameter 'resultLength' is never read.
Did you mean
ok = checkFromUnicode(cc);
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestConversion.java:[907,58] The parameter 'resultLength' is never read.
Did you mean
ok = checkToUnicode(cc);
icu4j/main/charset/src/test/java/com/ibm/icu/dev/test/charset/TestSelection.java:[143,24] The local variable 'sel' is never read.
Did you mean to remove this line or to remove this line?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/calendar/DataDrivenCalendarTest.java:[138,17] This assignment to the local variable 'toCalendar' is never read.
Did you mean to remove this line?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/calendar/DataDrivenCalendarTest.java:[179,67] The parameter 'settings' is never read.
Did you mean
testOps(td);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DataDrivenFormatTest.java:[79,75] The parameter 'settings' is never read.
Did you mean
testConvertDate(td, true);
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[3817,13] This assignment to the local variable 'o' is never read.
Did you mean to remove this line or 'new Date();'?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[4380,19] This assignment to the local variable 'date' is never read.
Did you mean
time = null, full = null;
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[4380,32] This assignment to the local variable 'time' is never read.
Did you mean
full = null;
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[4380,45] This assignment to the local variable 'full' is never read.
Did you mean to remove this line?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[4381,17] This assignment to the local variable 'cal' is never read.
Did you mean to remove this line?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[4665,8] This assignment to the local variable 'sym' is never read.
Did you mean to remove this line or 'new ChineseDateFormatSymbols();'?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[9389,13] The local variable 'millis' is never read.
Did you mean to remove this line?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[4885,23] The local variable 'pat' is never read.
Did you mean to remove this line or 'fmt.toLocalizedPattern();'?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[6893,16] This assignment to the local variable 'sdf' is never read.
Did you mean to remove this line or 'sdf.clone();'?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/DateFormatTest.java:[9390,15] The local variable 'skeleton' is never read.
Did you mean to remove this line?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/IntlTestDecimalFormatAPIC.java:[177,13] This assignment to the local variable 'multiplier' is never read.
Did you mean to remove this line?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/IntlTestDecimalFormatAPIC.java:[185,12] This assignment to the local variable 'groupingSize' is never read.
Did you mean to remove this line?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/IntlTestDecimalFormatAPIC.java:[273,15] This assignment to the local variable 's' is never read.
Did you mean to remove this line?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/MeasureUnitTest.java:[252,8] This assignment to the local variable 'mf' is never read.
Did you mean to remove this line or 'MeasureFormat.getInstance(ULocale.GERMAN, FormatWidth.NUMERIC, nf);'?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/MeasureUnitTest.java:[197,19] The local variable 'numericDataDe' is never read.
Did you mean to remove this line?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatRegressionTest.java:[358,21] This assignment to the local variable 'nf' is never read.
Did you mean to remove this line?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[434,8] This assignment to the local variable 's' is never read.
Did you mean to remove this line?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[1383,15] This assignment to the local variable 'out' is never read.
Did you mean to remove this line?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberFormatTest.java:[2858,11] This assignment to the local variable 'nf' is never read.
Did you mean to remove this line or '(DecimalFormat)'?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberRegressionTests.java:[129,15] This assignment to the local variable 'buffer' is never read.
Did you mean to remove this line or 'new String();'?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/NumberRegressionTests.java:[1766,22] The local variable 'format' is never read.
Did you mean to remove this line or 'new DecimalFormat("0.0000000000000001");'?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/PluralRulesTest.java:[1465,32] The local variable 'isLimited' is never read.
Did you mean to remove this line or 'rules.isLimited(keyword, sampleType);'?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/PluralRulesTest.java:[1029,33] The local variable 'fmtr' is never read.
Did you mean to remove this line or 'NumberFormatter.withLocale(ULocale.ROOT);'?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/PluralRulesTest.java:[1466,32] The local variable 'computeLimited' is never read.
Did you mean to remove this line or 'rules.computeLimited(keyword, sampleType);'?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[336,22] This assignment to the local variable 'y' is never read.
Did you mean to remove this line?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[381,22] This assignment to the local variable 'y' is never read.
Did you mean to remove this line?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[555,17] This assignment to the local variable 'formatsChg' is never read.
Did you mean to remove this line?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[556,17] This assignment to the local variable 'formatsAct' is never read.
Did you mean to remove this line?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[559,17] This assignment to the local variable 'formatsToAdopt' is never read.
Did you mean to remove this line?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[1378,15] This assignment to the local variable 'pattern' is never read.
Did you mean to remove this line?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/format/TestMessageFormat.java:[1379,22] This assignment to the local variable 'msgFmt' is never read.
Did you mean to remove this line?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/number/NumberFormatterApiTest.java:[4550,41] The local variable 'l' is never read.
Did you mean to remove this line or 'f.locale(locale);'?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/number/NumberFormatterApiTest.java:[722,24] The local variable 'expectedOutputUnit' is never read.
Did you mean to remove this line or 'MeasureUnit.forIdentifier(test[5]);'?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/number/NumberFormatterApiTest.java:[736,24] The local variable 'actualOutputUnit' is never read.
Did you mean to remove this line or 'fn.getOutputUnit();'?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/rbbi/LSTMBreakEngineTest.java:[56,15] The local variable 'testString' is never read.
Did you mean to remove this line?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/rbbi/LSTMBreakEngineTest.java:[80,24] The local variable 'ret' is never read.
Did you mean to remove this line or 'engine.findBreaks(input, 0, length, foundBreaks, false);'?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ICUResourceBundleTest.java:[742,26] This assignment to the local variable 'bundle' is never read.
Did you mean to remove this line?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ICUServiceTest.java:[181,8] This assignment to the local variable 'result' is never read.
Did you mean to remove this line or 'service.get("EN_us_fOo", resultID);'?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ICUServiceTest.java:[717,8] This assignment to the local variable 'target' is never read.
Did you mean to remove this line or 'service.get(de_US, LocaleKey.KIND_ANY, actualReturn);'?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ULocaleTest.java:[4722,12] The field 'lineNr' is never read.
Did you mean to remove this line?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ULocaleTest.java:[4720,36] The field 'ENDL' is never read.
Did you mean to remove this line or 'static { System.getProperties().getProperty("line.separator"); }'?
icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ULocaleTest.java:[4691,16] The local variable 'locale' is never read.
Did you mean to remove this line or 'new ULocale(invalid);'?
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/holiday/HolidayCalendarDemo.java:[703,23] The field 'holiday' is never read.
Did you mean to remove this line?
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/rbnf/RbnfDemo.java:[573,16] The field 'totalHeight' is never read.
Did you mean to remove this line?
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/Demo.java:[723,24] This assignment to the local variable 'end' is never read.
Did you mean to remove this line?
icu4j/demos/src/main/java/com/ibm/icu/dev/demo/translit/Demo.java:[1091,16] This assignment to the local variable 'end' is never read.
Did you mean to remove this line?
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/docs/Deprecator.java:[21,20] The field 'undep' is never read.
Did you mean to remove this line?
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/docs/GatherAPIData.java:[255,15] The local variable 'orgArg' is never read.
Did you mean to remove this line?
icu4j/tools/build/src/main/java/com/ibm/icu/dev/tool/errorprone/ErrorProneReport.java:[317,38] The local variable 'errorsOfType' is never read.
Did you mean to remove this line or 'e.getValue();'?
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/ime/translit/TransliteratorInputMethod.java:[411,53] The parameter 'off' is never read.
Did you mean
private void traceBuffer(String msg, int cc) {
icu4j/tools/misc/src/main/java/com/ibm/icu/dev/tool/localeconverter/XLIFF2ICUConverter.java:[717,70] The parameter 'bare' is never read.
Did you mean
current.write(writer, 0);
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/CollationPerformanceTest.java:[828,12] The local variable 'tempgCount' is never read.
Did you mean to remove this line?
icu4j/perf-tests/src/main/java/com/ibm/icu/dev/test/perf/CollationPerformanceTest.java:[703,12] The local variable 'tempgCount' is never read.
Did you mean to remove this line?