Skip to content

Commit

Permalink
upgraded to wala/WALA latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
maldil committed Nov 2, 2021
1 parent 3cf9b35 commit 705e59f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -279,9 +279,9 @@ protected void addBypassLogic(IClassHierarchy cha, AnalysisOptions options) {
addSummaryBypassLogic(options, "functools.xml");
}


@Override
protected Iterable<Entrypoint> makeDefaultEntrypoints(AnalysisScope scope, IClassHierarchy cha) {
protected Iterable<Entrypoint> makeDefaultEntrypoints(IClassHierarchy cha) {
Set<Entrypoint> result = HashSetFactory.make();
cha.forEach(entry -> {
if (entry.getName().toString().endsWith(".py")) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
public class PythonTurtleLibraryAnalysisEngine extends PythonTurtleAnalysisEngine {

@Override
protected Iterable<Entrypoint> makeDefaultEntrypoints(AnalysisScope scope, IClassHierarchy cha) {
protected Iterable<Entrypoint> makeDefaultEntrypoints(IClassHierarchy cha) {
return TurtleSummary.turtleEntryPoints(cha);
}

Expand Down

0 comments on commit 705e59f

Please sign in to comment.