You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hama.apache.org by ed...@apache.org on 2008/08/26 07:57:53 UTC

svn commit: r688967 - /incubator/hama/trunk/src/java/org/apache/hama/io/VectorWritable.java

Author: edwardyoon
Date: Mon Aug 25 22:57:53 2008
New Revision: 688967

URL: http://svn.apache.org/viewvc?rev=688967&view=rev
Log: (empty)

Modified:
    incubator/hama/trunk/src/java/org/apache/hama/io/VectorWritable.java

Modified: incubator/hama/trunk/src/java/org/apache/hama/io/VectorWritable.java
URL: http://svn.apache.org/viewvc/incubator/hama/trunk/src/java/org/apache/hama/io/VectorWritable.java?rev=688967&r1=688966&r2=688967&view=diff
==============================================================================
--- incubator/hama/trunk/src/java/org/apache/hama/io/VectorWritable.java (original)
+++ incubator/hama/trunk/src/java/org/apache/hama/io/VectorWritable.java Mon Aug 25 22:57:53 2008
@@ -44,7 +44,7 @@
   public HbaseMapWritable<byte[], Cell> cells;
 
   public Cell put(byte[] key, Cell value) {
-    throw new UnsupportedOperationException("VectorDatum is read-only!");
+    throw new UnsupportedOperationException("VectorWritable is read-only!");
   }
 
   public Cell get(Object key) {
@@ -52,7 +52,7 @@
   }
 
   public Cell remove(Object key) {
-    throw new UnsupportedOperationException("VectorDatum is read-only!");
+    throw new UnsupportedOperationException("VectorWritable is read-only!");
   }
 
   public boolean containsKey(Object key) {
@@ -184,7 +184,7 @@
     }
 
     public Cell setValue(Cell c) {
-      throw new UnsupportedOperationException("VectorDatum is read-only!");
+      throw new UnsupportedOperationException("VectorWritable is read-only!");
     }
 
     public byte[] getKey() {