Add missing getRecipe(NamespacedKey) method to FakeServer (#3530)

This commit is contained in:
pop4959 2020-07-22 12:02:00 -07:00 committed by GitHub
parent 9aec89f381
commit b7c18d0785
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -913,6 +913,11 @@ public class FakeServer implements Server {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public Recipe getRecipe(NamespacedKey namespacedKey) {
throw new UnsupportedOperationException("Not supported yet.");
}
@Override
public Iterator<Recipe> recipeIterator() {
throw new UnsupportedOperationException("Not supported yet.");