Skip to content

Commit

Permalink
format style
Browse files Browse the repository at this point in the history
  • Loading branch information
sahilagichani14 committed Nov 4, 2024
1 parent cb8e580 commit 7649be5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,11 @@ public JimpleStringAnalysisInputLocation(
JimpleConverter jimpleConverter = new JimpleConverter();
classSource =
jimpleConverter.run(
CharStreams.fromString(jimpleFileContents), this, path, bodyInterceptors, new JimpleView(this));
CharStreams.fromString(jimpleFileContents),
this,
path,
bodyInterceptors,
new JimpleView(this));
} catch (Exception e) {
throw new IllegalArgumentException("No valid Jimple given.", e);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,12 @@ private SootClass parseJimpleClass(CharStream cs) throws ResolveException {
JimpleConverter jimpleVisitor = new JimpleConverter();
EagerInputLocation eagerInputLocation = new EagerInputLocation();
final OverridingClassSource scs =
jimpleVisitor.run(cs, eagerInputLocation, Paths.get(""), Collections.emptyList(), new JimpleView(eagerInputLocation));
jimpleVisitor.run(
cs,
eagerInputLocation,
Paths.get(""),
Collections.emptyList(),
new JimpleView(eagerInputLocation));
return new SootClass(scs, SourceType.Application);
}

Expand Down

0 comments on commit 7649be5

Please sign in to comment.