You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sh...@apache.org on 2015/09/03 22:58:00 UTC

svn commit: r1701138 - in /lucene/dev/branches/branch_5x: ./ solr/ solr/solrj/ solr/solrj/src/java/org/apache/solr/common/util/ByteUtils.java

Author: shalin
Date: Thu Sep  3 20:58:00 2015
New Revision: 1701138

URL: http://svn.apache.org/r1701138
Log:
SOLR-7971: Mention output stream in javadoc instead of byte buffer

Modified:
    lucene/dev/branches/branch_5x/   (props changed)
    lucene/dev/branches/branch_5x/solr/   (props changed)
    lucene/dev/branches/branch_5x/solr/solrj/   (props changed)
    lucene/dev/branches/branch_5x/solr/solrj/src/java/org/apache/solr/common/util/ByteUtils.java

Modified: lucene/dev/branches/branch_5x/solr/solrj/src/java/org/apache/solr/common/util/ByteUtils.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/solr/solrj/src/java/org/apache/solr/common/util/ByteUtils.java?rev=1701138&r1=1701137&r2=1701138&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/solr/solrj/src/java/org/apache/solr/common/util/ByteUtils.java (original)
+++ lucene/dev/branches/branch_5x/solr/solrj/src/java/org/apache/solr/common/util/ByteUtils.java Thu Sep  3 20:58:00 2015
@@ -129,7 +129,7 @@ public class ByteUtils {
 
   /** Writes UTF8 into the given OutputStream by first writing to the given scratch array
    * and then writing the contents of the scratch array to the OutputStream. The given scratch byte array
-   * is used to buffer intermediate data before it is written to the byte buffer.
+   * is used to buffer intermediate data before it is written to the output stream.
    *
    * @return the number of bytes written
    */