Fixed unused variable issue

This commit is contained in:
CalDescent 2021-08-18 16:24:37 +01:00
parent bedb87674b
commit 8515112811

View File

@ -127,7 +127,7 @@ public class ArbitraryDataCombiner {
private void process() throws IOException { private void process() throws IOException {
String patchType = metadata.getPatchType(); String patchType = metadata.getPatchType();
ArbitraryDataMerge merge = new ArbitraryDataMerge(this.pathBefore, this.pathAfter, metadata.getPatchType()); ArbitraryDataMerge merge = new ArbitraryDataMerge(this.pathBefore, this.pathAfter, patchType);
merge.compute(); merge.compute();
this.finalPath = merge.getMergePath(); this.finalPath = merge.getMergePath();
} }