You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@giraph.apache.org by ma...@apache.org on 2018/03/14 04:50:03 UTC

git commit: updated refs/heads/trunk to 251b167

Repository: giraph
Updated Branches:
  refs/heads/trunk 8e6ec2661 -> 251b167e9


closes #64


Project: http://git-wip-us.apache.org/repos/asf/giraph/repo
Commit: http://git-wip-us.apache.org/repos/asf/giraph/commit/251b167e
Tree: http://git-wip-us.apache.org/repos/asf/giraph/tree/251b167e
Diff: http://git-wip-us.apache.org/repos/asf/giraph/diff/251b167e

Branch: refs/heads/trunk
Commit: 251b167e9a17d29b3da6074933acaf92cf5dec81
Parents: 8e6ec26
Author: Dionysios Logothetis <dl...@gmail.com>
Authored: Tue Mar 13 16:44:01 2018 -0700
Committer: Maja Kabiljo <ma...@fb.com>
Committed: Tue Mar 13 21:49:53 2018 -0700

----------------------------------------------------------------------
 .../org/apache/giraph/ooc/data/DiskBackedPartitionStore.java  | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/giraph/blob/251b167e/giraph-core/src/main/java/org/apache/giraph/ooc/data/DiskBackedPartitionStore.java
----------------------------------------------------------------------
diff --git a/giraph-core/src/main/java/org/apache/giraph/ooc/data/DiskBackedPartitionStore.java b/giraph-core/src/main/java/org/apache/giraph/ooc/data/DiskBackedPartitionStore.java
index 70e909d..134c758 100644
--- a/giraph-core/src/main/java/org/apache/giraph/ooc/data/DiskBackedPartitionStore.java
+++ b/giraph-core/src/main/java/org/apache/giraph/ooc/data/DiskBackedPartitionStore.java
@@ -245,9 +245,10 @@ public class DiskBackedPartitionStore<I extends WritableComparable,
     id.readFields(in);
     Vertex<I, V, E> v = partition.getVertex(id);
     if (v == null) {
-      throw new IllegalStateException("Vertex with ID " + id + " not found in partition " +
-        partition.getId() + " which has " + partition.getVertexCount() +
-        " vertices and " + partition.getEdgeCount() + " edges.");
+      throw new IllegalStateException("Vertex with ID " + id +
+        " not found in partition " + partition.getId() +
+        " which has " + partition.getVertexCount() + " vertices and " +
+        partition.getEdgeCount() + " edges.");
     }
     OutEdges<I, E> edges = (OutEdges<I, E>) v.getEdges();
     edges.readFields(in);