You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2014/06/29 14:01:15 UTC

svn commit: r1606470 - /commons/proper/bcel/trunk/src/main/java/org/apache/bcel/verifier/structurals/ControlFlowGraph.java

Author: ggregory
Date: Sun Jun 29 12:01:15 2014
New Revision: 1606470

URL: http://svn.apache.org/r1606470
Log:
Formating.

Modified:
    commons/proper/bcel/trunk/src/main/java/org/apache/bcel/verifier/structurals/ControlFlowGraph.java

Modified: commons/proper/bcel/trunk/src/main/java/org/apache/bcel/verifier/structurals/ControlFlowGraph.java
URL: http://svn.apache.org/viewvc/commons/proper/bcel/trunk/src/main/java/org/apache/bcel/verifier/structurals/ControlFlowGraph.java?rev=1606470&r1=1606469&r2=1606470&view=diff
==============================================================================
--- commons/proper/bcel/trunk/src/main/java/org/apache/bcel/verifier/structurals/ControlFlowGraph.java (original)
+++ commons/proper/bcel/trunk/src/main/java/org/apache/bcel/verifier/structurals/ControlFlowGraph.java Sun Jun 29 12:01:15 2014
@@ -243,11 +243,9 @@ public class ControlFlowGraph{
                 extendMessageWithFlow(sce);
                 throw sce;
             }
-            if (    oldstack.equals(inF.getStack()) &&
-                        oldlocals.equals(inF.getLocals()) ){
+            if (oldstack.equals(inF.getStack()) && oldlocals.equals(inF.getLocals())) {
                 return false;
-            }
-            else{
+            } else {
                 return true;
             }
         }