You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xindice-dev@xml.apache.org by vg...@apache.org on 2007/06/28 06:10:21 UTC

svn commit: r551439 - /xml/xindice/trunk/java/src/org/apache/xindice/webadmin/PartialResponse.java

Author: vgritsenko
Date: Wed Jun 27 21:10:20 2007
New Revision: 551439

URL: http://svn.apache.org/viewvc?view=rev&rev=551439
Log:
add toString()

Modified:
    xml/xindice/trunk/java/src/org/apache/xindice/webadmin/PartialResponse.java

Modified: xml/xindice/trunk/java/src/org/apache/xindice/webadmin/PartialResponse.java
URL: http://svn.apache.org/viewvc/xml/xindice/trunk/java/src/org/apache/xindice/webadmin/PartialResponse.java?view=diff&rev=551439&r1=551438&r2=551439
==============================================================================
--- xml/xindice/trunk/java/src/org/apache/xindice/webadmin/PartialResponse.java (original)
+++ xml/xindice/trunk/java/src/org/apache/xindice/webadmin/PartialResponse.java Wed Jun 27 21:10:20 2007
@@ -150,5 +150,9 @@
 
             return buf;
         }
+
+        public String toString() {
+            return getContent().toString();
+        }
     }
 }