Author: billie
Date: Thu May 17 17:24:30 2012
New Revision: 1339726
URL: http://svn.apache.org/viewvc?rev=1339726&view=rev
Log:
ACCUMULO-532 added IOException to constructor based on change in accumulo trunk
Modified:
accumulo/contrib/bsp/trunk/src/main/java/org/apache/accumulo/bsp/AccumuloOutputFormat.java
Modified:
accumulo/contrib/bsp/trunk/src/main/java/org/apache/accumulo/bsp/AccumuloOutputFormat.java
URL:
http://svn.apache.org/viewvc/accumulo/contrib/bsp/trunk/src/main/java/org/apache/accumulo/bsp/AccumuloOutputFormat.java?rev=1339726&r1=1339725&r2=1339726&view=diff
==============================================================================
---
accumulo/contrib/bsp/trunk/src/main/java/org/apache/accumulo/bsp/AccumuloOutputFormat.java
(original)
+++
accumulo/contrib/bsp/trunk/src/main/java/org/apache/accumulo/bsp/AccumuloOutputFormat.java
Thu May 17 17:24:30 2012
@@ -31,7 +31,7 @@ import org.apache.hama.bsp.RecordWriter;
public class AccumuloOutputFormat extends
org.apache.accumulo.core.client.mapreduce.AccumuloOutputFormat implements
OutputFormat<Text,Mutation> {
protected static class BSPRecordWriter extends AccumuloRecordWriter
implements RecordWriter<Text,Mutation> {
- BSPRecordWriter(Configuration conf) throws AccumuloException,
AccumuloSecurityException {
+ BSPRecordWriter(Configuration conf) throws AccumuloException,
AccumuloSecurityException, IOException {
super(conf);
}