Kaydet (Commit) 72f9ee58 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1326926 NS: Suspicious use of non-short-circuit boolean operator

Change-Id: I16c0d0b19290d59089a11eb660aa23fa8b03535c
üst f7e4cf3c
...@@ -190,7 +190,9 @@ public class _XChartDataArray extends MultiMethodTest { ...@@ -190,7 +190,9 @@ public class _XChartDataArray extends MultiMethodTest {
if (bResult) { if (bResult) {
for (int i = 0; i < dscs.length; i++) { for (int i = 0; i < dscs.length; i++) {
log.println("Row " + i + ": got " + dscs[i] + " expected: " + rowDscs[i]); log.println("Row " + i + ": got " + dscs[i] + " expected: " + rowDscs[i]);
bResult &= dscs[i].equals(rowDscs[i]); if (!dscs[i].equals(rowDscs[i])) {
bResult = false;
}
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment