Skip to content

Commit ef33031

Browse files
authored
Merge pull request #827 from jpstotz/getter
add missing ResType.id getter
2 parents 2a6649a + b13e6a7 commit ef33031

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

soot-infoflow-android/src/soot/jimple/infoflow/android/resources/ARSCFileParser.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,11 @@ public boolean equals(Object obj) {
377377
public static class ResType {
378378
private int id;
379379
private String typeName;
380-
private List<ResConfig> configurations = new ArrayList<ResConfig>();
380+
private List<ResConfig> configurations = new ArrayList<>();
381+
382+
public int getId() {
383+
return id;
384+
}
381385

382386
public String getTypeName() {
383387
return this.typeName;

0 commit comments

Comments
 (0)