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

svn commit: r1236884 - /lucene/dev/trunk/solr/solrj/src/java/org/apache/solr/common/util/ByteUtils.java

Author: markrmiller
Date: Fri Jan 27 20:53:15 2012
New Revision: 1236884

URL: http://svn.apache.org/viewvc?rev=1236884&view=rev
Log:
fix bad javadoc

Modified:
    lucene/dev/trunk/solr/solrj/src/java/org/apache/solr/common/util/ByteUtils.java

Modified: lucene/dev/trunk/solr/solrj/src/java/org/apache/solr/common/util/ByteUtils.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/solrj/src/java/org/apache/solr/common/util/ByteUtils.java?rev=1236884&r1=1236883&r2=1236884&view=diff
==============================================================================
--- lucene/dev/trunk/solr/solrj/src/java/org/apache/solr/common/util/ByteUtils.java (original)
+++ lucene/dev/trunk/solr/solrj/src/java/org/apache/solr/common/util/ByteUtils.java Fri Jan 27 20:53:15 2012
@@ -76,7 +76,7 @@ public class ByteUtils {
 
   /** Writes UTF8 into the byte array, starting at offset.  The caller should ensure that
    * there is enough space for the worst-case scenario.
-   * @returns the number of bytes written
+   * @return the number of bytes written
    */
   public static int UTF16toUTF8(CharSequence s, int offset, int len, byte[] result, int resultOffset) {
     final int end = offset + len;