git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1377797 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2012-08-27 19:19:55 +00:00
parent c61a8c0b71
commit 75ec677928
1 changed files with 2 additions and 2 deletions

View File

@ -33,10 +33,10 @@ public final class Constants {
public static final String JVM_VERSION = System.getProperty("java.vm.version");
public static final String JVM_NAME = System.getProperty("java.vm.name");
/** The value of <tt>System.getProperty("java.version")<tt>. **/
/** The value of <tt>System.getProperty("java.version")</tt>. **/
public static final String JAVA_VERSION = System.getProperty("java.version");
/** The value of <tt>System.getProperty("os.name")<tt>. **/
/** The value of <tt>System.getProperty("os.name")</tt>. **/
public static final String OS_NAME = System.getProperty("os.name");
/** True iff running on Linux. */
public static final boolean LINUX = OS_NAME.startsWith("Linux");