Mailing List Archive

cvs commit: jakarta-lucene/src/java/org/apache/lucene/util Constants.java
otis 02/03/25 13:41:58

Modified: src/java/org/apache/lucene/util Constants.java
Log:
- Javadoc fix for bug 7461.

Revision Changes Path
1.2 +2 -2 jakarta-lucene/src/java/org/apache/lucene/util/Constants.java

Index: Constants.java
===================================================================
RCS file: /home/cvs/jakarta-lucene/src/java/org/apache/lucene/util/Constants.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Constants.java 10 Oct 2001 16:13:41 -0000 1.1
+++ Constants.java 25 Mar 2002 21:41:58 -0000 1.2
@@ -58,7 +58,7 @@
* Some useful constants.
*
* @author Doug Cutting
- * @version $Id: Constants.java,v 1.1 2001/10/10 16:13:41 cutting Exp $
+ * @version $Id: Constants.java,v 1.2 2002/03/25 21:41:58 otis Exp $
**/

public final class Constants {
@@ -75,7 +75,7 @@

/** The value of <tt>System.getProperty("os.name")<tt>. **/
public static final String OS_NAME = System.getProperty("os.name");
- /** True iff running on Windows. */
+ /** True iff running on Linux. */
public static final boolean LINUX = OS_NAME.startsWith("Linux");
/** True iff running on Windows. */
public static final boolean WINDOWS = OS_NAME.startsWith("Windows");




--
To unsubscribe, e-mail: <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:lucene-dev-help@jakarta.apache.org>