Removed Java 1.8 no more necessary version checking (fixes issue #147)

Java 1.8 is by the way now a prerequisite to run from latest sources.
This commit is contained in:
luccioman 2017-12-08 15:26:46 +01:00
parent d95b288f19
commit 640fed2a9c
2 changed files with 0 additions and 13 deletions

View File

@ -170,15 +170,6 @@
</dd>
#(/hintCrawlMonitor)#
#(hintJREVersion)#::
<dt class="hintIcon"><img src="env/grafics/idea.png" width="32" height="32" alt="idea"/></dt>
<dd class="hint">
Your Java version is old. YaCy currently needs Java 1.7 but we want to migrate to Java 1.8 in the future.
Migration to 1.8 won't happen until end of 2016, but we want to join code with YaCy's sister project <a href="http://loklak.org">loklak.org</a>
and with a possible re-construction of YaCy in the <a href="http://kaskelix.de">kaskelix</a> architecture which will be using Java 1.8
</dd>
#(/hintJREVersion)#
#(hintSupport)#::
<dt class="hintIcon"><img src="env/grafics/idea.png" width="32" height="32" alt="idea"/></dt>
<dd class="hint">If you need professional support, please write to <tt>support@yacy.net</tt><br>For community support, please visit our <a href="http://forum.yacy.de" target="_blank">forum</a>.

View File

@ -173,10 +173,6 @@ public class Status
prop.put("hintCrawlMonitor", "1");
}
if (!System.getProperty("java.version").startsWith("1.8")) {
prop.put("hintJREVersion", "1");
}
if (adminaccess && "intranet|webportal|allip".indexOf(env.getConfig(SwitchboardConstants.NETWORK_NAME, "unspecified")) >= 0) {
prop.put("hintSupport", "1");
}