Updated Branches: refs/heads/origin/trunk [created] 21467cfe4
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/97ab66f2 Tree: http://git-wip-us.apache.org/repos/asf/giraph/tree/97ab66f2 Diff: http://git-wip-us.apache.org/repos/asf/giraph/diff/97ab66f2 Branch: refs/heads/origin/trunk Commit: 97ab66f2b2a74e860f0807b078684a0bfc663722 Parents: b1f7b94 Author: Maja Kabiljo <[email protected]> Authored: Mon May 6 14:00:42 2013 -0700 Committer: Avery Ching <[email protected]> Committed: Mon May 6 15:04:45 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/97ab66f2/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/97ab66f2/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()); }
