From cd3302fea2a850b9742668fa7d679d25eb0288c2 Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Mon, 27 Apr 2026 15:55:02 -0700 Subject: [PATCH] Add compatibility shim. --- .../java/com/threerings/getdown/launcher/Getdown.java | 8 ++++++++ 1 file changed, 8 insertions(+) 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 7404b53..503134e 100644 --- a/launcher/src/main/java/com/threerings/getdown/launcher/Getdown.java +++ b/launcher/src/main/java/com/threerings/getdown/launcher/Getdown.java @@ -75,6 +75,14 @@ public abstract class Getdown }.start(); } + // This is just a compatibility shim. Way back in the day Getdown was launched via + // com.threerings.getdown.launcher.Getdown but now it's launched via + // com.threerings.getdown.launcher.GetdownApp. We want those old jpackage clients to work, so we + // need a main() on this class to keep them functioning. + public static void main (String[] args) { + GetdownApp.main(args); + } + public Getdown (EnvConfig envc) { try {