We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5078e7d commit f3db3a2Copy full SHA for f3db3a2
1 file changed
src/main/java/org/mcphackers/mcp/tasks/TaskCreatePatch.java
@@ -29,10 +29,7 @@ protected Stage[] setStages() {
29
if (!Files.exists(srcPathUnpatched)) {
30
throw new IOException("Unpatched " + side.name + " sources cannot be found!");
31
}
32
- boolean result = createDiffOperation(srcPathUnpatched, srcPathPatched, patchesOut);
33
- if (result) {
34
- throw new RuntimeException("Failed to create patches!");
35
- }
+ createDiffOperation(srcPathUnpatched, srcPathPatched, patchesOut);
36
})
37
};
38
0 commit comments