Skip to content

Commit 9c7db53

Browse files
committed
Stylecheck
1 parent 7441ebf commit 9c7db53

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/soot/toolkits/scalar/FlowSensitiveConstantPropagator.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,8 @@ protected void flowThrough(ConstantState in, Unit d, ConstantState out) {
348348
//Class Constants can trigger a NoClassDefFoundError.
349349
//Therefore, cannot not propagate them in some cases, since we might change the semantics of the original
350350
//program w.r.t. traps.
351-
//The normal constant propagator propagates them when they are safe to propagate. Implementing this here is harder,
351+
//The normal constant propagator propagates them when they are safe to propagate.
352+
//Implementing this here is harder,
352353
//since we need to keep track of trap handlers at all assigns in the original code.
353354
if (!(rop instanceof ClassConstant)) {
354355
value = (Constant) rop;

0 commit comments

Comments
 (0)