Skip to content

Commit 87b6fca

Browse files
author
Niklas
committed
Nicer
1 parent 978fa96 commit 87b6fca

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

soot-infoflow/src/soot/jimple/infoflow/data/SootMethodAndClass.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,10 @@ public SootMethodAndClass(String methodName, String className, String returnType
3434
}
3535

3636
private static List<String> parameterFromString(String parameters) {
37-
List<String> paras = new ArrayList<>();
3837
if (parameters != null && !parameters.isEmpty()) {
3938
return Arrays.asList(parameters.split(","));
4039
}
41-
return paras;
40+
return new ArrayList<>();
4241
}
4342

4443
public SootMethodAndClass(SootMethod sm) {

0 commit comments

Comments
 (0)