You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2012/08/27 21:19:55 UTC

svn commit: r1377797 - /lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/util/Constants.java

Author: rmuir
Date: Mon Aug 27 19:19:55 2012
New Revision: 1377797

URL: http://svn.apache.org/viewvc?rev=1377797&view=rev
Log:
fix javadocs so they dont grow bigger and Bigger and BIGGER (http://lucene.apache.org/core/4_0_0-BETA/core/org/apache/lucene/util/Constants.html)

Modified:
    lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/util/Constants.java

Modified: lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/util/Constants.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/util/Constants.java?rev=1377797&r1=1377796&r2=1377797&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/util/Constants.java (original)
+++ lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/util/Constants.java Mon Aug 27 19:19:55 2012
@@ -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");