Skip to content

Commit

Permalink
Minor changes (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
khatchad authored May 26, 2023
1 parent 9d384cf commit 01306ae
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,10 @@ buildNumber.properties
# .project
# JDT-specific (Eclipse Java Development Tools)
# .classpath

# Temporary output
callgraph.pdf
temp.dt

# Log output
*.log
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ You must install the `jython-dev.jar` to your local maven repository.
1. Clone the [WALA/ML repository][WALA/ML].
1. Build and install to your local Maven repo: `mvn install`

[SO post]: https://stackoverflow.com/questions/4955635/how-to-add-local-jar-files-to-a-maven-project#answer-4955695
[SO post]: https://stackoverflow.com/questions/4955635/how-to-add-local-jar-files-to-a-maven-project#answer-4955695
[IDE]: https://github.com/wala/IDE
[WALA/ML]: https://github.com/wala/ML
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
eclipse.preferences.version=1
encoding//src/test/java=UTF-8
encoding/<project>=UTF-8
encoding/data=UTF-8
encoding/source=UTF-8
1 change: 1 addition & 0 deletions com.ibm.wala.cast.python.ml.test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
<configuration>
<forkMode>once</forkMode>
<argLine>-Dpython.import.site=false</argLine>
<trimStackTrace>false</trimStackTrace>
</configuration>
</plugin>
</plugins>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public IClassHierarchy buildClassHierarchy() {
assert false : e;
return null;
} catch (WalaException e) {
throw new WalaRuntimeException(e.getMessage());
throw new WalaRuntimeException(e.getMessage(), e);
}
}

Expand Down

0 comments on commit 01306ae

Please sign in to comment.