-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #504 from Feuermagier/remove-lombok
Remove lombok
- Loading branch information
Showing
9 changed files
with
48 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 4 additions & 2 deletions
6
...-core/src/main/java/de/firemage/autograder/core/compiler/CompilationFailureException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,18 @@ | ||
package de.firemage.autograder.core.compiler; | ||
|
||
import de.firemage.autograder.core.LinterException; | ||
import lombok.Getter; | ||
|
||
import java.util.List; | ||
|
||
public class CompilationFailureException extends LinterException { | ||
@Getter | ||
private final List<CompilationDiagnostic> diagnostics; | ||
|
||
CompilationFailureException(List<CompilationDiagnostic> diagnostics) { | ||
super(CompilationDiagnostic.formatMultiple(diagnostics)); | ||
this.diagnostics = diagnostics; | ||
} | ||
|
||
public List<CompilationDiagnostic> getDiagnostics() { | ||
return diagnostics; | ||
} | ||
} |
12 changes: 9 additions & 3 deletions
12
autograder-core/src/main/java/de/firemage/autograder/core/integrated/graph/Usage.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 5 additions & 2 deletions
7
...der-core/src/main/java/de/firemage/autograder/core/integrated/graph/UsageAccessField.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 5 additions & 2 deletions
7
...ader-core/src/main/java/de/firemage/autograder/core/integrated/graph/UsageCallMethod.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 5 additions & 2 deletions
7
...-core/src/main/java/de/firemage/autograder/core/integrated/graph/UsageCreateInstance.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters