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 = "";
}
/*
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;
}