Skip to content

Commit

Permalink
Remove debug System.out.println calls.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexIIL committed Mar 23, 2019
1 parent 1dba000 commit efdebf4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,6 @@ public class SimplePipeModels {

public static ModelResourceProvider createResourceProvider(ResourceManager manager) {
return (Identifier resourceId, ModelProviderContext context) -> {
if (SimplePipes.MODID.equals(resourceId.getNamespace())) {
System.out.println("resource: " + resourceId);
}
return null;
};
}
Expand Down Expand Up @@ -68,7 +65,6 @@ private static BakedModel getModel(ResourceManager manager, ModelIdentifier reso
return new PipeBlockModel(SimplePipeBlocks.IRON_PIPE_FLUIDS);

default:
System.out.println(resourceId);
return null;
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "simple_pipes",
"name": "SimpleItemPipeTest",
"name": "SimplePipeTest",
"description": "A simple pipes mod for testing Lib Block Attributes implementations",
"version": "$version",
"side": "universal",
Expand Down

0 comments on commit efdebf4

Please sign in to comment.