You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by no...@apache.org on 2009/08/24 10:39:35 UTC

svn commit: r807122 - /lucene/solr/trunk/src/common/org/apache/solr/common/util/JavaBinCodec.java

Author: noble
Date: Mon Aug 24 08:39:35 2009
New Revision: 807122

URL: http://svn.apache.org/viewvc?rev=807122&view=rev
Log:
javadoc changes

Modified:
    lucene/solr/trunk/src/common/org/apache/solr/common/util/JavaBinCodec.java

Modified: lucene/solr/trunk/src/common/org/apache/solr/common/util/JavaBinCodec.java
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/src/common/org/apache/solr/common/util/JavaBinCodec.java?rev=807122&r1=807121&r2=807122&view=diff
==============================================================================
--- lucene/solr/trunk/src/common/org/apache/solr/common/util/JavaBinCodec.java (original)
+++ lucene/solr/trunk/src/common/org/apache/solr/common/util/JavaBinCodec.java Mon Aug 24 08:39:35 2009
@@ -26,7 +26,7 @@
 import java.nio.ByteBuffer;
 
 /**
- * The class is designed to optimaly serialize/deserialize a NamedList. As we know there are only a limited type of
+ * The class is designed to optimaly serialize/deserialize any supported types in Solr response. As we know there are only a limited type of
  * items this class can do it with very minimal amount of payload and code. There are 15 known types and if there is an
  * object in the object tree which does not fall into these types, It must be converted to one of these. Implement an
  * ObjectResolver and pass it over It is expected that this class is used on both end of the pipes. The class has one