Skip to content

Commit e43ae87

Browse files
committed
spotless
1 parent 5fde305 commit e43ae87

File tree

1 file changed

+16
-17
lines changed

1 file changed

+16
-17
lines changed

core/com.ibm.wala.cast.python.test/source/com/ibm/wala/cast/python/test/TestPythonCallGraphShape.java

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,6 @@
22

33
import static java.util.Collections.emptyList;
44

5-
import java.io.File;
6-
import java.io.IOException;
7-
import java.net.MalformedURLException;
8-
import java.net.URI;
9-
import java.net.URISyntaxException;
10-
import java.net.URL;
11-
import java.util.ArrayList;
12-
import java.util.Collection;
13-
import java.util.List;
14-
import java.util.Set;
15-
165
import com.ibm.wala.cast.python.client.PythonAnalysisEngine;
176
import com.ibm.wala.cast.python.types.PythonTypes;
187
import com.ibm.wala.cast.types.AstMethodReference;
@@ -29,6 +18,16 @@
2918
import com.ibm.wala.types.TypeReference;
3019
import com.ibm.wala.util.CancelException;
3120
import com.ibm.wala.util.collections.HashSetFactory;
21+
import java.io.File;
22+
import java.io.IOException;
23+
import java.net.MalformedURLException;
24+
import java.net.URI;
25+
import java.net.URISyntaxException;
26+
import java.net.URL;
27+
import java.util.ArrayList;
28+
import java.util.Collection;
29+
import java.util.List;
30+
import java.util.Set;
3231

3332
public abstract class TestPythonCallGraphShape extends TestCallGraphShape {
3433

@@ -132,12 +131,12 @@ StringBuffer dump(CallGraph CG) {
132131
}
133132
return sb;
134133
}
135-
134+
136135
protected void verifyGraphAssertions(CallGraph CG, Object[][] data) {
137-
List<GraphAssertion> asserts = new ArrayList<>();
138-
for(int i = 0; i < data.length; i++) {
139-
asserts.add(new GraphAssertion(data[i][0], (String[]) data[i][1]));
140-
}
141-
verifyGraphAssertions(CG, asserts);
136+
List<GraphAssertion> asserts = new ArrayList<>();
137+
for (int i = 0; i < data.length; i++) {
138+
asserts.add(new GraphAssertion(data[i][0], (String[]) data[i][1]));
139+
}
140+
verifyGraphAssertions(CG, asserts);
142141
}
143142
}

0 commit comments

Comments
 (0)