diff --git a/spotbugs/src/main/java/edu/umd/cs/findbugs/ba/BetterCFGBuilder2.java b/spotbugs/src/main/java/edu/umd/cs/findbugs/ba/BetterCFGBuilder2.java index 6e64de48fb1..742ec3918c8 100644 --- a/spotbugs/src/main/java/edu/umd/cs/findbugs/ba/BetterCFGBuilder2.java +++ b/spotbugs/src/main/java/edu/umd/cs/findbugs/ba/BetterCFGBuilder2.java @@ -1010,7 +1010,7 @@ private boolean isPEI(InstructionHandle handle) throws CFGBuilderException { if (ins instanceof PUTFIELD && !methodGen.isStatic()) { // Assume that PUTFIELD on this object is not PEI int depth = ins.consumeStack(cpg); - int fieldSize = ((PUTFIELD)ins).getFieldType(cpg).getSize(); + int fieldSize = ((PUTFIELD) ins).getFieldType(cpg).getSize(); for (InstructionHandle prev = handle.getPrev(); prev != null; prev = prev.getPrev()) { Instruction prevInst = prev.getInstruction(); if (prevInst instanceof BranchInstruction) {