Skip to content

Commit

Permalink
ack
Browse files Browse the repository at this point in the history
  • Loading branch information
62832 committed Dec 21, 2022
1 parent 0901d0d commit e9186c1
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 12 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ jobs:
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
cache: 'gradle'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Generate data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,6 @@ public MEGABulkCell(Properties properties) {
super(properties.stacksTo(1));
}

@Override
public boolean isEditable(ItemStack itemStack) {
return true;
}

@Override
public ConfigInventory getConfigInventory(ItemStack is) {
return CellConfig.create(AEItemKey.filter(), is, 1);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import gripe._90.megacells.definition.MEGAItems;
import gripe._90.megacells.util.service.IPlatformHelper;

public class FabricPlatformHelper implements IPlatformHelper {
public final class FabricPlatformHelper implements IPlatformHelper {
@Override
public CreativeModeTab getCreativeTab() {
return FabricItemGroupBuilder.build(Utils.makeId("tab"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,6 @@ public MEGARadioactiveCell(Properties properties) {
super(properties.stacksTo(1));
}

@Override
public boolean isEditable(ItemStack itemStack) {
return true;
}

public ConfigInventory getConfigInventory(ItemStack is) {
return CellConfig.create(MekanismKeyType.TYPE.filter(), is, 1);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import gripe._90.megacells.util.Utils;
import gripe._90.megacells.util.service.IPlatformHelper;

public class ForgePlatformHelper implements IPlatformHelper {
public final class ForgePlatformHelper implements IPlatformHelper {
@Override
public CreativeModeTab getCreativeTab() {
return new CreativeModeTab(Utils.MODID + ".tab") {
Expand Down

0 comments on commit e9186c1

Please sign in to comment.