Enable legacy mixin ap by default (#501)

dev/0.11
modmuss50 2021-09-20 17:44:08 +01:00 committed by GitHub
parent 1752659291
commit 06e60e5c29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ public abstract class MixinExtensionApiImpl implements MixinExtensionAPI {
public MixinExtensionApiImpl(Project project) {
this.project = Objects.requireNonNull(project);
this.useMixinAp = project.getObjects().property(Boolean.class)
.convention(false);
.convention(true);
}
protected final PatternSet add0(SourceSet sourceSet, String refmapName) {