Remove obsolete comment about static method in TweaksModule

The removed comment questioned making a method non-static, which is already resolved or irrelevant. This cleanup improves code readability and eliminates confusion.
This commit is contained in:
Minecon724 2025-02-02 14:05:44 +01:00
parent c096674a15
commit cbe9f77cca
Signed by: Minecon724
GPG key ID: 3CCC4D267742C8E8

View file

@ -34,7 +34,6 @@ public abstract class TweaksModule {
DebugLogger.fine("Initialized %s in %d µs", name, (end - start) / 1000); DebugLogger.fine("Initialized %s in %d µs", name, (end - start) / 1000);
} }
// TODO not static maybe?
protected TweaksPlugin getPlugin() { protected TweaksPlugin getPlugin() {
return TweaksPlugin.getInstance(); return TweaksPlugin.getInstance();
} }