src/java.base/share/classes/sun/security/util/SignatureFileVerifier.java
changeset 53018 8bf9268df0e2
parent 48080 18a4438eb690
child 57488 94691d8e746f
equal deleted inserted replaced
53017:e10a1f7aaa13 53018:8bf9268df0e2
   421                     e.getMessage();
   421                     e.getMessage();
   422         }
   422         }
   423 
   423 
   424         // This means we have an error in finding weak algorithms, run in
   424         // This means we have an error in finding weak algorithms, run in
   425         // debug mode to see permittedAlgs map's values.
   425         // debug mode to see permittedAlgs map's values.
   426         if (w.length() == 0) {
   426         if (w.isEmpty()) {
   427             return "Unknown Algorithm(s)";
   427             return "Unknown Algorithm(s)";
   428         }
   428         }
   429 
   429 
   430         return w;
   430         return w;
   431     }
   431     }