Author: shalin
Date: Mon Dec 8 00:30:35 2008
New Revision: 724285
URL: http://svn.apache.org/viewvc?rev=724285&view=rev
Log:
SOLR-901 -- FastOutputStream ignores write(byte[]) call
Modified:
lucene/solr/trunk/CHANGES.txt
lucene/solr/trunk/src/common/org/apache/solr/common/util/FastOutputStream.java
Modified: lucene/solr/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/lucene/solr/trunk/CHANGES.txt?rev=724285&r1=724284&r2=724285&view=diff
==============================================================================
--- lucene/solr/trunk/CHANGES.txt (original)
+++ lucene/solr/trunk/CHANGES.txt Mon Dec 8 00:30:35 2008
@@ -162,6 +162,8 @@
15. SOLR-898: Fix null pointer exception for the JSON response writer
based formats when nl.json=arrarr with null keys. (yonik)
+16. SOLR-901: FastOutputStream ignores write(byte[]) call. (Noble Paul via
shalin)
+
Other Changes
----------------------
Modified:
lucene/solr/trunk/src/common/org/apache/solr/common/util/FastOutputStream.java
URL:
http://svn.apache.org/viewvc/lucene/solr/trunk/src/common/org/apache/solr/common/util/FastOutputStream.java?rev=724285&r1=724284&r2=724285&view=diff
==============================================================================
---
lucene/solr/trunk/src/common/org/apache/solr/common/util/FastOutputStream.java
(original)
+++
lucene/solr/trunk/src/common/org/apache/solr/common/util/FastOutputStream.java
Mon Dec 8 00:30:35 2008
@@ -51,6 +51,7 @@
}
public void write(byte b[]) throws IOException {
+ write(b,0,b.length);
}
public void write(byte b) throws IOException {
@@ -185,4 +186,4 @@
public long size() {
return written + pos;
}
-}
\ No newline at end of file
+}