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/09/16 12:15:55 UTC

svn commit: r695803 - /incubator/hama/trunk/src/java/org/apache/hama/AbstractMatrix.java

Author: edwardyoon
Date: Tue Sep 16 03:15:54 2008
New Revision: 695803

URL: http://svn.apache.org/viewvc?rev=695803&view=rev
Log:
Trivial change.

Modified:
    incubator/hama/trunk/src/java/org/apache/hama/AbstractMatrix.java

Modified: incubator/hama/trunk/src/java/org/apache/hama/AbstractMatrix.java
URL: http://svn.apache.org/viewvc/incubator/hama/trunk/src/java/org/apache/hama/AbstractMatrix.java?rev=695803&r1=695802&r2=695803&view=diff
==============================================================================
--- incubator/hama/trunk/src/java/org/apache/hama/AbstractMatrix.java (original)
+++ incubator/hama/trunk/src/java/org/apache/hama/AbstractMatrix.java Tue Sep 16 03:15:54 2008
@@ -69,14 +69,10 @@
   /**
    * Create matrix space
    */
-  protected void create() {
-    try {
-      this.tableDesc.addFamily(new HColumnDescriptor(Constants.ATTRIBUTE));
-      LOG.info("Initializing the matrix storage.");
-      this.admin.createTable(this.tableDesc);
-    } catch (IOException e) {
-      LOG.error(e, e);
-    }
+  protected void create() throws IOException {
+    this.tableDesc.addFamily(new HColumnDescriptor(Constants.ATTRIBUTE));
+    LOG.info("Initializing the matrix storage.");
+    this.admin.createTable(this.tableDesc);
   }
 
   public void execute(JobConf jobConf, Matrix result) throws IOException {