Updated Branches: refs/heads/trunk d8baf4b80 -> 56d8e8988
GIRAPH-658: Remove final modifier from SimpleHiveToEdge.initializeRecords (majakabiljo) Project: http://git-wip-us.apache.org/repos/asf/giraph/repo Commit: http://git-wip-us.apache.org/repos/asf/giraph/commit/56d8e898 Tree: http://git-wip-us.apache.org/repos/asf/giraph/tree/56d8e898 Diff: http://git-wip-us.apache.org/repos/asf/giraph/diff/56d8e898 Branch: refs/heads/trunk Commit: 56d8e89887f9037cb1849b66d99e1e01eddec106 Parents: d8baf4b Author: Maja Kabiljo <[email protected]> Authored: Mon May 6 14:00:42 2013 -0700 Committer: Maja Kabiljo <[email protected]> Committed: Mon May 6 14:00:42 2013 -0700 ---------------------------------------------------------------------- CHANGELOG | 3 +++ .../giraph/hive/input/edge/SimpleHiveToEdge.java | 2 +- 2 files changed, 4 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/giraph/blob/56d8e898/CHANGELOG ---------------------------------------------------------------------- diff --git a/CHANGELOG b/CHANGELOG index ea10fac..0a6e026 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,9 @@ Giraph Change Log Release 1.0.1 - unreleased + GIRAPH-658: Remove final modifier from SimpleHiveToEdge.initializeRecords + (majakabiljo) + GIRAPH-656: Input from multiple tables doesn't work with multithreading (majakabiljo) http://git-wip-us.apache.org/repos/asf/giraph/blob/56d8e898/giraph-hive/src/main/java/org/apache/giraph/hive/input/edge/SimpleHiveToEdge.java ---------------------------------------------------------------------- diff --git a/giraph-hive/src/main/java/org/apache/giraph/hive/input/edge/SimpleHiveToEdge.java b/giraph-hive/src/main/java/org/apache/giraph/hive/input/edge/SimpleHiveToEdge.java index 7e55037..56b38f9 100644 --- a/giraph-hive/src/main/java/org/apache/giraph/hive/input/edge/SimpleHiveToEdge.java +++ b/giraph-hive/src/main/java/org/apache/giraph/hive/input/edge/SimpleHiveToEdge.java @@ -65,7 +65,7 @@ public abstract class SimpleHiveToEdge<I extends WritableComparable, public abstract E getEdgeValue(HiveReadableRecord hiveRecord); @Override - public final void initializeRecords(Iterator<HiveReadableRecord> records) { + public void initializeRecords(Iterator<HiveReadableRecord> records) { this.records = records; reusableEdge.setEdge(getConf().createReusableEdge()); }
