Fix FabricMaterialBuilder.notSolid having the wrong return type (#1308)

Should be backwards compatible.
This commit is contained in:
PepperCode1 2021-02-14 09:41:59 -08:00 committed by GitHub
parent be996d2566
commit cd0f1d33c1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -73,7 +73,7 @@ public class FabricMaterialBuilder extends Material.Builder {
}
@Override
public Material.Builder notSolid() {
public FabricMaterialBuilder notSolid() {
super.notSolid();
return this;
}