Skip to content

Commit

Permalink
remove unused throws exception
Browse files Browse the repository at this point in the history
  • Loading branch information
laurenzfb committed Oct 31, 2023
1 parent 3ecacde commit 996d71f
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public String toString() {
* @return The build result.
* @throws LocalCIException If some error occurs while preparing or running the build job.
*/
public LocalCIBuildResult runBuildJob(ProgrammingExerciseParticipation participation, String commitHash, String containerName, String dockerImage) throws InterruptedException {
public LocalCIBuildResult runBuildJob(ProgrammingExerciseParticipation participation, String commitHash, String containerName, String dockerImage) {
// Update the build plan status to "BUILDING".
localCIBuildPlanService.updateBuildPlanStatus(participation, ContinuousIntegrationService.BuildStatus.BUILDING);

Expand Down Expand Up @@ -191,8 +191,7 @@ public LocalCIBuildResult runBuildJob(ProgrammingExerciseParticipation participa
* @throws LocalCIException if something went wrong while running the build job.
*/
private LocalCIBuildResult runScriptAndParseResults(ProgrammingExerciseParticipation participation, String containerName, String containerId, String branch, String commitHash,
Path assignmentRepositoryPath, Path testsRepositoryPath, Path[] auxiliaryRepositoriesPaths, String[] auxiliaryRepositoryNames, Path buildScriptPath)
throws InterruptedException {
Path assignmentRepositoryPath, Path testsRepositoryPath, Path[] auxiliaryRepositoriesPaths, String[] auxiliaryRepositoryNames, Path buildScriptPath) {

long timeNanoStart = System.nanoTime();

Expand Down

0 comments on commit 996d71f

Please sign in to comment.