We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3742708 commit 5d6d8c2Copy full SHA for 5d6d8c2
kernel/src/main/java/com/itextpdf/kernel/Version.java
@@ -367,14 +367,14 @@ private static String[] getLicenseeInfoFromLicenseKey(String validatorKey) throw
367
return null;
368
}
369
370
- private static boolean isiText5licenseLoaded(){
+ private static boolean isiText5licenseLoaded() {
371
String validatorKey5 = "5";
372
boolean result = false;
373
try {
374
String[] info = getLicenseeInfoFromLicenseKey(validatorKey5);
375
result = true;
376
- }catch(Exception e){
377
- //TODO: Log this exception?
+ } catch (Exception ignore) {
+
378
379
return result;
380
0 commit comments