Skip to content

Commit 294c215

Browse files
committed
Simplify statement.
1 parent 09a2df7 commit 294c215

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

com.ibm.wala.cast.python.ml/source/com/ibm/wala/cast/python/ml/client/PythonTensorAnalysisEngine.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -619,7 +619,7 @@ private Map<PointsToSetVariable, TensorType> getShapeSourceCalls(
619619
op,
620620
builder,
621621
(CGNode src, SSAAbstractInvokeInstruction call) -> {
622-
if (call.getNumberOfUses() > param) {
622+
if (call.getNumberOfUses() > param)
623623
targets.put(
624624
builder
625625
.getPropagationSystem()
@@ -629,7 +629,6 @@ private Map<PointsToSetVariable, TensorType> getShapeSourceCalls(
629629
.getHeapModel()
630630
.getPointerKeyForLocal(src, call.getDef())),
631631
TensorType.shapeArg(src, call.getUse(param)));
632-
}
633632
});
634633
return targets;
635634
}

0 commit comments

Comments
 (0)