Enable legacy mixin ap by default (#501)
This commit is contained in:
parent
1752659291
commit
06e60e5c29
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ public abstract class MixinExtensionApiImpl implements MixinExtensionAPI {
|
||||||
public MixinExtensionApiImpl(Project project) {
|
public MixinExtensionApiImpl(Project project) {
|
||||||
this.project = Objects.requireNonNull(project);
|
this.project = Objects.requireNonNull(project);
|
||||||
this.useMixinAp = project.getObjects().property(Boolean.class)
|
this.useMixinAp = project.getObjects().property(Boolean.class)
|
||||||
.convention(false);
|
.convention(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected final PatternSet add0(SourceSet sourceSet, String refmapName) {
|
protected final PatternSet add0(SourceSet sourceSet, String refmapName) {
|
||||||
|
|
Loading…
Reference in a new issue