Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
Remove comments in main
Browse files Browse the repository at this point in the history
  • Loading branch information
jwkerr committed Aug 8, 2023
1 parent b17e976 commit 64d5244
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/main/java/com/fwloopins/tabby/Tabby.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,10 @@
import org.slf4j.LoggerFactory;

public class Tabby implements ModInitializer {
// This logger is used to write text to the console and the log file.
// It is considered best practice to use your mod id as the logger's name.
// That way, it's clear which mod wrote info, warnings, and errors.
public static final Logger LOGGER = LoggerFactory.getLogger("Tabby");

@Override
public void onInitialize() {
// This code runs as soon as Minecraft is in a mod-load-ready state.
// However, some things (like resources) may still be uninitialized.
// Proceed with mild caution.
AutoConfig.register(TabbyConfig.class, GsonConfigSerializer::new);

LOGGER.info("Tabby initialized");
Expand Down

0 comments on commit 64d5244

Please sign in to comment.