1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-08 08:45:44 +02:00

Bug 530325 - Could not start RSE daemon/server with Java 9

Change-Id: Ib38f82476f381448392bbb9a1770ce188f4f2e4b
Signed-off-by: Sezgin Halibov <sezgin.halibov@gmail.com>
This commit is contained in:
Sezgin Halibov 2018-01-25 19:26:44 +02:00
parent 50505c23b9
commit 4b52d24816

View file

@ -62,7 +62,7 @@ public class Server implements Runnable
int major = Integer.parseInt(vers[1]); int major = Integer.parseInt(vers[1]);
if (version >= 1 && major >= 4) if (version >= 9 || (version >= 1 && major >= 4))
{ {
// version is good // version is good
} }