Enable legacy mixin ap by default (#501)
parent
1752659291
commit
06e60e5c29
|
@ -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 New Issue