put back the signature checking in getdown now that I know it's not the culprit

This commit is contained in:
Elizabeth Fong
2006-10-22 19:26:49 +00:00
parent 323ca2e3ee
commit 8a3ea897cf
@@ -71,7 +71,6 @@ public class GetdownApplet extends JApplet
signature = ""; signature = "";
} }
/*
Object[] signers = GetdownApplet.class.getSigners(); Object[] signers = GetdownApplet.class.getSigners();
if (signers.length == 0) { if (signers.length == 0) {
_safe = true; _safe = true;
@@ -98,7 +97,6 @@ public class GetdownApplet extends JApplet
"aborting installation."); "aborting installation.");
return; return;
} }
*/
// Pass through properties parameter. // Pass through properties parameter.
String properties = getParameter("properties"); 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 * Getdown will refuse to initialize if the jar is signed but the
* parameters are not validated to prevent malicious code from being run. * parameters are not validated to prevent malicious code from being run.
*/ */
protected boolean _safe = true; protected boolean _safe = false;
} }