From 8a3ea897cffa14e9c8880bab5464fae6efc7589e Mon Sep 17 00:00:00 2001 From: Elizabeth Fong Date: Sun, 22 Oct 2006 19:26:49 +0000 Subject: [PATCH] put back the signature checking in getdown now that I know it's not the culprit --- src/java/com/threerings/getdown/launcher/GetdownApplet.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/java/com/threerings/getdown/launcher/GetdownApplet.java b/src/java/com/threerings/getdown/launcher/GetdownApplet.java index d556cf1..54dae9c 100644 --- a/src/java/com/threerings/getdown/launcher/GetdownApplet.java +++ b/src/java/com/threerings/getdown/launcher/GetdownApplet.java @@ -71,7 +71,6 @@ public class GetdownApplet extends JApplet signature = ""; } - /* Object[] signers = GetdownApplet.class.getSigners(); if (signers.length == 0) { _safe = true; @@ -98,7 +97,6 @@ public class GetdownApplet extends JApplet "aborting installation."); return; } - */ // Pass through properties parameter. String properties = getParameter("properties"); @@ -260,5 +258,5 @@ public class GetdownApplet extends JApplet * Getdown will refuse to initialize if the jar is signed but the * parameters are not validated to prevent malicious code from being run. */ - protected boolean _safe = true; + protected boolean _safe = false; }