You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@reef.apache.org by yu...@apache.org on 2015/06/23 17:21:00 UTC

[6/7] incubator-reef git commit: Add space after for and parenthesis

Add space after for and parenthesis


Project: http://git-wip-us.apache.org/repos/asf/incubator-reef/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-reef/commit/d040261a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-reef/tree/d040261a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-reef/diff/d040261a

Branch: refs/heads/REEF-395
Commit: d040261ab99a56eeeec03ca82bd2ee2023449506
Parents: 2e552ef
Author: Yunseong Lee <yu...@apache.org>
Authored: Tue Jun 23 21:59:42 2015 +0900
Committer: Yunseong Lee <yu...@apache.org>
Committed: Tue Jun 23 21:59:42 2015 +0900

----------------------------------------------------------------------
 .../apache/reef/tang/implementation/java/AvroClassHierarchy.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-reef/blob/d040261a/lang/java/reef-tang/tang/src/main/java/org/apache/reef/tang/implementation/java/AvroClassHierarchy.java
----------------------------------------------------------------------
diff --git a/lang/java/reef-tang/tang/src/main/java/org/apache/reef/tang/implementation/java/AvroClassHierarchy.java b/lang/java/reef-tang/tang/src/main/java/org/apache/reef/tang/implementation/java/AvroClassHierarchy.java
index 4c275a7..545bc08 100644
--- a/lang/java/reef-tang/tang/src/main/java/org/apache/reef/tang/implementation/java/AvroClassHierarchy.java
+++ b/lang/java/reef-tang/tang/src/main/java/org/apache/reef/tang/implementation/java/AvroClassHierarchy.java
@@ -58,7 +58,7 @@ public final class AvroClassHierarchy implements ClassHierarchy {
    * Build a table that maps the name to the corresponding Node recursively.
    */
   private void buildLookupTable(final Node n) {
-    for(final Node child : n.getChildren()) {
+    for (final Node child : n.getChildren()) {
       lookupTable.put(child.getFullName(), child);
       buildLookupTable(child);
     }