Skip to content
This repository was archived by the owner on Oct 18, 2018. It is now read-only.

Commit c414aac

Browse files
committed
Disable license validation
1 parent 3858dab commit c414aac

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/com/groupdocs/ui/Utils.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@ public static void loadLicense() {
6969
if (Files.exists(FileSystems.getDefault().getPath(getProjectProperty("license.path")))) {
7070
l.setLicense(getProjectProperty("license.path"));
7171
if (!License.isValidLicense()) {
72-
throw new RuntimeException("Invalid license found.");
72+
// TODO: Check for invalid license
73+
//throw new RuntimeException("Invalid license found.");
7374
}
7475
}
7576
}

0 commit comments

Comments
 (0)