add some debug code for refmap issue

This commit is contained in:
asie
2018-12-12 07:16:01 +01:00
parent b00b42e3bf
commit f61b06f616
2 changed files with 4 additions and 4 deletions

View File

@@ -54,7 +54,7 @@ public final class MixinRefmapHelper {
Set<String> mixinFilenames = findMixins(output, true);
if (mixinFilenames.size() > 0) {
ZipUtil.transformEntries(
return ZipUtil.transformEntries(
output,
mixinFilenames.stream()
.map((f) -> new ZipEntryTransformerEntry(f, new StringZipEntryTransformer("UTF-8") {
@@ -66,8 +66,6 @@ public final class MixinRefmapHelper {
}
})).toArray(ZipEntryTransformerEntry[]::new)
);
return true;
} else {
return false;
}