|
From: <mar...@us...> - 2014-04-23 10:39:02
|
Revision: 17893
http://sourceforge.net/p/gate/code/17893
Author: markagreenwood
Date: 2014-04-23 10:38:57 +0000 (Wed, 23 Apr 2014)
Log Message:
-----------
if we are going to compile using 1.7 we should probably do the check properly here as well, mind you we had never moved it to 1.6 so it's probably a fairly redundant check (if you aren't using 1.7 you'd not be able to interpret the class to do the check)
Modified Paths:
--------------
gate/trunk/src/main/gate/Gate.java
Modified: gate/trunk/src/main/gate/Gate.java
===================================================================
--- gate/trunk/src/main/gate/Gate.java 2014-04-23 01:21:46 UTC (rev 17892)
+++ gate/trunk/src/main/gate/Gate.java 2014-04-23 10:38:57 UTC (rev 17893)
@@ -109,7 +109,7 @@
public static final String URI = "http://www.gate.ac.uk";
/** Minimum version of JDK we support */
- protected static final String MIN_JDK_VERSION = "1.5";
+ protected static final String MIN_JDK_VERSION = "1.7";
/**
* Feature name that should be used to set if the benchmarking logging should
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|