Skip to content

Commit 4a101c3

Browse files
committed
LPD-38666 com.liferay.ide.server.core: only show the error if the version is below 7
1 parent 2a68fde commit 4a101c3

File tree

1 file changed

+1
-1
lines changed
  • tools/plugins/com.liferay.ide.server.core/src/com/liferay/ide/server/core/portal

1 file changed

+1
-1
lines changed

tools/plugins/com.liferay.ide.server.core/src/com/liferay/ide/server/core/portal/PortalRuntime.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ public IStatus validate() {
278278
MessageFormat.format(Msgs.errorPortalRuntimeConfiguration, runtime.getName()), null);
279279
}
280280

281-
if (!portalBundleVersion.startsWith("7")) {
281+
if (portalBundleVersion.startsWith("5") || portalBundleVersion.startsWith("6")) {
282282
return new Status(IStatus.ERROR, LiferayServerCore.PLUGIN_ID, 0, Msgs.errorPortalVersion70, null);
283283
}
284284

0 commit comments

Comments
 (0)