Skip to content

Commit

Permalink
Merge pull request #51 from repo-alt/rv3-1.7.10
Browse files Browse the repository at this point in the history
API backwards compatibility
  • Loading branch information
repo-alt authored May 5, 2021
2 parents 26f3ce0 + 3c05800 commit 0018bad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
aeversion=rv3
aechannel=beta
aebuild=46-GTNH
aebuild=47-GTNH
#KEEP V6 FOR MOD SUPPORT
aegroup=appeng
aebasename=appliedenergistics2
Expand Down
4 changes: 2 additions & 2 deletions src/api/java/appeng/api/storage/ICellWorkbenchItem.java
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ public interface ICellWorkbenchItem
* @param is cell item
* @return current ore dictionary filter
*/
String getOreFilter(ItemStack is);
default String getOreFilter(ItemStack is){ return ""; }

/**
* @param is cell item
* @param filter new ore dictionary filter
*/
void setOreFilter(ItemStack is, String filter);
default void setOreFilter(ItemStack is, String filter) {}
}

0 comments on commit 0018bad

Please sign in to comment.