Code cleanup to net.minecraft.Launcher

No code logic has been changed, only:
- add @Override annotatons
- change setVisible(boolean b) -> setVisible(boolean visible)
- Change block commend on class -> javadoc comment

Signed-off-by: solonovamax <solonovamax@12oclockpoint.com>
This commit is contained in:
solonovamax 2022-10-27 20:16:08 -04:00 committed by TheKodeToad
parent 99d9868116
commit e5622ce824

View File

@ -28,8 +28,9 @@ import java.util.Map;
import java.util.TreeMap; import java.util.TreeMap;
/* /**
* WARNING: This class is reflectively accessed by legacy Forge versions. * WARNING: This class is reflectively accessed by legacy Forge versions.
* <p>
* Changing field and method declarations without further testing is not recommended. * Changing field and method declarations without further testing is not recommended.
*/ */
public final class Launcher extends Applet implements AppletStub { public final class Launcher extends Applet implements AppletStub {
@ -47,6 +48,7 @@ public final class Launcher extends Applet implements AppletStub {
} }
public Launcher(Applet applet, URL documentBase) { public Launcher(Applet applet, URL documentBase) {
super();
this.setLayout(new BorderLayout()); this.setLayout(new BorderLayout());
this.add(applet, "Center"); this.add(applet, "Center");
@ -153,6 +155,7 @@ public final class Launcher extends Applet implements AppletStub {
active = false; active = false;
} }
@Override
public void destroy() { public void destroy() {
wrappedApplet.destroy(); wrappedApplet.destroy();
} }
@ -163,15 +166,17 @@ public final class Launcher extends Applet implements AppletStub {
} }
@Override @Override
public void setVisible(boolean b) { public void setVisible(boolean visible) {
super.setVisible(b); super.setVisible(visible);
wrappedApplet.setVisible(b); wrappedApplet.setVisible(visible);
} }
@Override
public void paint(Graphics paramGraphics) { public void paint(Graphics paramGraphics) {
} }
@Override
public void update(Graphics paramGraphics) { public void update(Graphics paramGraphics) {
} }