Updated Branches: refs/heads/trunk c5c1c4c61 -> 5d3f3c113
GIRAPH-603: AbstractVertexToHive doesn't need message type (majakabiljo) Project: http://git-wip-us.apache.org/repos/asf/giraph/repo Commit: http://git-wip-us.apache.org/repos/asf/giraph/commit/5d3f3c11 Tree: http://git-wip-us.apache.org/repos/asf/giraph/tree/5d3f3c11 Diff: http://git-wip-us.apache.org/repos/asf/giraph/diff/5d3f3c11 Branch: refs/heads/trunk Commit: 5d3f3c113aeb17fb4332668ffb24cb5571cbc24c Parents: c5c1c4c Author: Maja Kabiljo <[email protected]> Authored: Wed Apr 3 14:53:30 2013 -0700 Committer: Maja Kabiljo <[email protected]> Committed: Wed Apr 3 14:55:03 2013 -0700 ---------------------------------------------------------------------- CHANGELOG | 4 ++++ .../giraph/hive/output/AbstractVertexToHive.java | 5 ++--- .../giraph/hive/output/SimpleVertexToHive.java | 5 ++--- 3 files changed, 8 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/giraph/blob/5d3f3c11/CHANGELOG ---------------------------------------------------------------------- diff --git a/CHANGELOG b/CHANGELOG index 4dcf8b7..35303fa 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,10 @@ Giraph Change Log Release 0.2.0 - unreleased + GIRAPH-603: AbstractVertexToHive doesn't need message type (majakabiljo) + + GIRAPH-589: Remove unnecessary generics from input formats (majakabiljo) + GIRAPH-536: Clean up configuration options (apresta) GIRAPH-551: Fix log message at the end of edge input (apresta) http://git-wip-us.apache.org/repos/asf/giraph/blob/5d3f3c11/giraph-hive/src/main/java/org/apache/giraph/hive/output/AbstractVertexToHive.java ---------------------------------------------------------------------- diff --git a/giraph-hive/src/main/java/org/apache/giraph/hive/output/AbstractVertexToHive.java b/giraph-hive/src/main/java/org/apache/giraph/hive/output/AbstractVertexToHive.java index a688bf5..52fe93f 100644 --- a/giraph-hive/src/main/java/org/apache/giraph/hive/output/AbstractVertexToHive.java +++ b/giraph-hive/src/main/java/org/apache/giraph/hive/output/AbstractVertexToHive.java @@ -27,9 +27,8 @@ import org.apache.hadoop.io.WritableComparable; * @param <I> Vertex ID * @param <V> Vertex Value * @param <E> Edge Value - * @param <M> Message Value */ public abstract class AbstractVertexToHive<I extends WritableComparable, - V extends Writable, E extends Writable, M extends Writable> - extends DefaultConfigurableAndTableSchemaAware<I, V, E, M> + V extends Writable, E extends Writable> + extends DefaultConfigurableAndTableSchemaAware<I, V, E, Writable> implements VertexToHive<I, V, E> { } http://git-wip-us.apache.org/repos/asf/giraph/blob/5d3f3c11/giraph-hive/src/main/java/org/apache/giraph/hive/output/SimpleVertexToHive.java ---------------------------------------------------------------------- diff --git a/giraph-hive/src/main/java/org/apache/giraph/hive/output/SimpleVertexToHive.java b/giraph-hive/src/main/java/org/apache/giraph/hive/output/SimpleVertexToHive.java index 61de791..32a83a1 100644 --- a/giraph-hive/src/main/java/org/apache/giraph/hive/output/SimpleVertexToHive.java +++ b/giraph-hive/src/main/java/org/apache/giraph/hive/output/SimpleVertexToHive.java @@ -34,11 +34,10 @@ import java.io.IOException; * @param <I> Vertex ID * @param <V> Vertex Value * @param <E> Edge Value - * @param <M> Message Value */ public abstract class SimpleVertexToHive<I extends WritableComparable, - V extends Writable, E extends Writable, M extends Writable> extends - AbstractVertexToHive<I, V, E, M> { + V extends Writable, E extends Writable> extends + AbstractVertexToHive<I, V, E> { /** * Fill the HiveRecord from the Vertex given.
