UC.BOOLS

This warning appears if there is a call of new Boolean(string expression) constructor instead of using Boolean.valueOf(string expression).

Vulnerability and risk

This method creates extra objects which take up more memory and reduce performance, without any other functional effect.

Example 1

Copy
     ArrayList bool1(String arr[]) {
         ArrayList res = new ArrayList();
         for (int i = 0; i < arr.length; i++) {
             String b = arr[i];
             res.add(new Boolean(b));
         }
         return res;
     }

UC.BOOLS is reported for line 15: Unnecessary object creation, new Boolean(string expression) method can be replaced with Boolean.valueOf(string expression)