Skip to content

Commit

Permalink
Bump com.github.javaparser:javaparser-core from 3.12.0 to 3.25.7 (#79)
Browse files Browse the repository at this point in the history
* Bump com.github.javaparser:javaparser-core from 3.12.0 to 3.25.7

Bumps [com.github.javaparser:javaparser-core](https://github.com/javaparser/javaparser) from 3.12.0 to 3.25.7.
- [Release notes](https://github.com/javaparser/javaparser/releases)
- [Changelog](https://github.com/javaparser/javaparser/blob/master/changelog.md)
- [Commits](javaparser/javaparser@javaparser-parent-3.12.0...javaparser-parent-3.25.7)

---
updated-dependencies:
- dependency-name: com.github.javaparser:javaparser-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Fix compilation error

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Sander Ploegsma <sanderploegsma@gmail.com>
  • Loading branch information
dependabot[bot] and sanderploegsma authored Jan 2, 2024
1 parent 3c4252a commit 9c706f3
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ repositories {
dependencies {
testImplementation "junit:junit:4.13.2"
implementation "org.json:json:20231013"
implementation "com.github.javaparser:javaparser-core:3.12.0"
implementation "com.github.javaparser:javaparser-core:3.25.7"
implementation "com.google.guava:guava:32.1.3-jre"
testImplementation "com.google.truth:truth:1.1.5"
testImplementation "com.google.truth.extensions:truth-java8-extension:1.1.5"
2 changes: 1 addition & 1 deletion src/main/java/analyzer/exercises/Exercise.java
Original file line number Diff line number Diff line change
@@ -43,7 +43,7 @@ private Exercise(File solutionFile, FileWriter analysisFileWriter, FileWriter ta
this.tagsFileWriter = tagsFileWriter;

try {
this.compilationUnit = JavaParser.parse(solutionFile);
this.compilationUnit = new JavaParser().parse(solutionFile).getResult().get();
} catch (ParseProblemException e) {
addComment(GeneralComment.FAILED_PARSE);
} catch (FileNotFoundException e) {

0 comments on commit 9c706f3

Please sign in to comment.