diff options
Diffstat (limited to 'qadevOOo')
-rw-r--r-- | qadevOOo/tests/java/ifc/i18n/_XExtendedIndexEntrySupplier.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/qadevOOo/tests/java/ifc/i18n/_XExtendedIndexEntrySupplier.java b/qadevOOo/tests/java/ifc/i18n/_XExtendedIndexEntrySupplier.java index 277ba56fe667..77e96d72fa34 100644 --- a/qadevOOo/tests/java/ifc/i18n/_XExtendedIndexEntrySupplier.java +++ b/qadevOOo/tests/java/ifc/i18n/_XExtendedIndexEntrySupplier.java @@ -51,13 +51,12 @@ public class _XExtendedIndexEntrySupplier extends MultiMethodTest { requiredMethod("getLocaleList()"); boolean result = true; - boolean locResult = false; for (int i = 0; i < locales.length; i++) { String[] algNames = oObj.getAlgorithmList(locales[i]); algorithms.put(Integer.valueOf(i), algNames); - locResult = algNames != null && algNames.length > 0; + boolean locResult = algNames.length > 0; System.out.println("Locale " + i + ": " + locales[i].Country+","+locales[i].Language); for (int j=0; j<algNames.length; j++) { |