diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-14 15:38:50 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-10-14 15:45:44 +0200 |
commit | f1a3cea1532a5269da0b224fa2d3c51cafdf8ed7 (patch) | |
tree | 79cf7db26b9a3656c9dc12d8e7100bc6bb9c5276 /qadevOOo/tests/java/ifc/i18n | |
parent | 8343267884de708b9a4cb07a48bb5392477c690f (diff) |
cid#1326849 to cid#1326852 EC: Comparing incompatible types for equality
Change-Id: I11100f394652e6c73b0dce0150c2859ce0aa0073
Diffstat (limited to 'qadevOOo/tests/java/ifc/i18n')
-rw-r--r-- | qadevOOo/tests/java/ifc/i18n/_XLocaleData.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/qadevOOo/tests/java/ifc/i18n/_XLocaleData.java b/qadevOOo/tests/java/ifc/i18n/_XLocaleData.java index d2ba440295ed..d94daef71f99 100644 --- a/qadevOOo/tests/java/ifc/i18n/_XLocaleData.java +++ b/qadevOOo/tests/java/ifc/i18n/_XLocaleData.java @@ -261,7 +261,7 @@ public class _XLocaleData extends MultiMethodTest { if ((str[j].equals(""))) { printit = true; } - res &= (!str.equals("")); + res &= (!str[j].equals("")); } if (printit) log.println("FAILED for: language=" + languages[i] + " ; country=" + countries[i]); @@ -286,7 +286,7 @@ public class _XLocaleData extends MultiMethodTest { if ((str[j].equals(""))) { printit = true; } - res &= (!str.equals("")); + res &= (!str[j].equals("")); } if (printit) log.println("FAILED for: language=" + languages[i] + " ; country=" + countries[i]); @@ -311,7 +311,7 @@ public class _XLocaleData extends MultiMethodTest { if ((str[j].equals(""))) { printit = true; } - res &= (!str.equals("")); + res &= (!str[j].equals("")); } if (printit) log.println("FAILED for: language=" + languages[i] + " ; country=" + countries[i]); @@ -358,7 +358,7 @@ public class _XLocaleData extends MultiMethodTest { if ((str[j].equals(""))) { printit = true; } - res &= (!str.equals("")); + res &= (!str[j].equals("")); } if (printit) log.println("FAILED for: language=" + languages[i] + " ; country=" + countries[i]); |