This is an automated email from the ASF dual-hosted git repository.
ctubbsii pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/fluo-recipes.git
The following commit(s) were added to refs/heads/master by this push:
new 18d4404 Fix broken javadoc (#141)
18d4404 is described below
commit 18d44041b2702bfd68cca444b1f40e7b3189c96b
Author: Christopher Tubbs <[email protected]>
AuthorDate: Fri Aug 18 16:22:19 2017 -0400
Fix broken javadoc (#141)
Fix broken javadoc, caused by #137
Fix trivial deprecation warning in test overlooked in #137
---
.../org/apache/fluo/recipes/accumulo/export/AccumuloExporter.java | 5 +++--
.../src/test/java/org/apache/fluo/recipes/core/map/SplitsTest.java | 7 ++++---
2 files changed, 7 insertions(+), 5 deletions(-)
diff --git
a/modules/accumulo/src/main/java/org/apache/fluo/recipes/accumulo/export/AccumuloExporter.java
b/modules/accumulo/src/main/java/org/apache/fluo/recipes/accumulo/export/AccumuloExporter.java
index f580f43..7ed11e0 100644
---
a/modules/accumulo/src/main/java/org/apache/fluo/recipes/accumulo/export/AccumuloExporter.java
+++
b/modules/accumulo/src/main/java/org/apache/fluo/recipes/accumulo/export/AccumuloExporter.java
@@ -28,8 +28,9 @@ import
org.apache.fluo.recipes.accumulo.export.function.AccumuloTranslator;
import org.apache.fluo.recipes.core.export.SequencedExport;
/**
- * An Accumulo-specific {@link Exporter} that writes mutations to Accumulo.
For an overview of how
- * to use this, see the project level documentation for exporting to Accumulo.
+ * An Accumulo-specific {@link org.apache.fluo.recipes.core.export.Exporter}
that writes mutations
+ * to Accumulo. For an overview of how to use this, see the project level
documentation for
+ * exporting to Accumulo.
*
* @since 1.0.0
* @deprecated since 1.1.0, replaced by
diff --git
a/modules/core/src/test/java/org/apache/fluo/recipes/core/map/SplitsTest.java
b/modules/core/src/test/java/org/apache/fluo/recipes/core/map/SplitsTest.java
index e03a8bd..e6a6abe 100644
---
a/modules/core/src/test/java/org/apache/fluo/recipes/core/map/SplitsTest.java
+++
b/modules/core/src/test/java/org/apache/fluo/recipes/core/map/SplitsTest.java
@@ -24,7 +24,6 @@ import com.google.common.collect.Lists;
import org.apache.fluo.api.config.FluoConfiguration;
import org.apache.fluo.api.data.Bytes;
import org.apache.fluo.recipes.core.common.TableOptimizations;
-import org.apache.fluo.recipes.core.map.it.WordCountCombiner;
import org.junit.Assert;
import org.junit.Test;
@@ -41,7 +40,8 @@ public class SplitsTest {
org.apache.fluo.recipes.core.map.CollisionFreeMap.Options opts =
new org.apache.fluo.recipes.core.map.CollisionFreeMap.Options("foo",
- WordCountCombiner.class, String.class, Long.class, 3);
+ org.apache.fluo.recipes.core.map.it.WordCountCombiner.class,
String.class, Long.class,
+ 3);
opts.setBucketsPerTablet(1);
FluoConfiguration fluoConfig = new FluoConfiguration();
CollisionFreeMap.configure(fluoConfig, opts);
@@ -58,7 +58,8 @@ public class SplitsTest {
org.apache.fluo.recipes.core.map.CollisionFreeMap.Options opts2 =
new org.apache.fluo.recipes.core.map.CollisionFreeMap.Options("bar",
- WordCountCombiner.class, String.class, Long.class, 6);
+ org.apache.fluo.recipes.core.map.it.WordCountCombiner.class,
String.class, Long.class,
+ 6);
opts2.setBucketsPerTablet(2);
CollisionFreeMap.configure(fluoConfig, opts2);
--
To stop receiving notification emails like this one, please contact
['"[email protected]" <[email protected]>'].