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

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

Change-Id: I99aba91939af31837923d2e2e3ca4814178449dc
üst a66bd32b
......@@ -160,10 +160,9 @@ public class _XChartDataArray extends MultiMethodTest {
*/
public void _getColumnDescriptions() {
requiredMethod("setColumnDescriptions()");
bResult = true;
String[] dscs = oObj.getColumnDescriptions();
bResult &= dscs.length == colDscs.length;
bResult = dscs.length == colDscs.length;
if (bResult) {
for (int i = 0; i < dscs.length; i++) {
log.println("Col " + i + ": got " + dscs[i] + " expected: " + colDscs[i]);
......
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