From d9826ff8959295e8cda5ef844b3d64657fe6dd7c Mon Sep 17 00:00:00 2001 From: Daniel Gredler Date: Wed, 12 Sep 2018 16:43:05 -0400 Subject: [PATCH] Remove legacy Getdown.main( ) method This method was apparently deprecated 12 years ago, when GetdownApp.main( ) was added. The immediate motivation is to eliminate some of the security noise around this method being a source of untrusted data, but in a more general sense it also probably makes sense to clean it up after not being used for so long. (Triggered by internal security audit and Fortify analysis.) --- .../main/java/com/threerings/getdown/launcher/Getdown.java | 6 ------ 1 file changed, 6 deletions(-) diff --git a/launcher/src/main/java/com/threerings/getdown/launcher/Getdown.java b/launcher/src/main/java/com/threerings/getdown/launcher/Getdown.java index ef494e1..48e7ff3 100644 --- a/launcher/src/main/java/com/threerings/getdown/launcher/Getdown.java +++ b/launcher/src/main/java/com/threerings/getdown/launcher/Getdown.java @@ -69,12 +69,6 @@ import static com.threerings.getdown.Log.log; public abstract class Getdown extends Thread implements Application.StatusDisplay, RotatingBackgrounds.ImageLoader { - public static void main (String[] args) - { - // legacy support - GetdownApp.main(args); - } - public Getdown (File appDir, String appId) { this(appDir, appId, null, null, null);