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 {
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();
this.finalPath = merge.getMergePath();
}