Skip to content

Commit 863f747

Browse files
committed
Fix attempting to throw a void exception
Not sure how I ended up doing this one.
1 parent cd24e23 commit 863f747

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/groovy/net/minecraftforge/gradleutils/PomUtilsImpl.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ import javax.inject.Inject
6060

6161
this.addRemoteDetails(pom, url)
6262
} catch (Exception e) {
63-
throw this.problems.reportPomUtilsGitVersionMissing(e)
63+
this.problems.reportPomUtilsGitVersionMissing(e)
6464
}
6565
}
6666
}

0 commit comments

Comments
 (0)