diff --git a/servlet-core/src/main/java/tech/smartboot/servlet/plugins/license/LicensePlugin.java b/servlet-core/src/main/java/tech/smartboot/servlet/plugins/license/LicensePlugin.java index 1a99237..1905759 100644 --- a/servlet-core/src/main/java/tech/smartboot/servlet/plugins/license/LicensePlugin.java +++ b/servlet-core/src/main/java/tech/smartboot/servlet/plugins/license/LicensePlugin.java @@ -146,9 +146,9 @@ private LicenseTO loadLicense(LicenseEntity entity) throws IOException { licenseTO.setContact(entity.getContact()); licenseTO.setVendor(entity.getApplicant()); - if (!isVersionSupported(Container.VERSION.substring(1), properties.getProperty("supportVersion"))) { - return INVALID_LICENSE; - } +// if (!isVersionSupported(Container.VERSION.substring(1), properties.getProperty("supportVersion"))) { +// return INVALID_LICENSE; +// } return licenseTO; }