Index: java/security/Security.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/security/Security.java,v retrieving revision 1.31 diff -u -b -B -r1.31 Security.java --- java/security/Security.java 11 Oct 2004 13:20:37 -0000 1.31 +++ java/security/Security.java 14 Oct 2004 03:47:19 -0000 @@ -82,19 +82,9 @@ if (!loadProviders (base, "classpath") && !loaded && providers.size() == 0) - { - // No providers found and both security files failed to load properly. - System.err.println - ("WARNING: could not properly read security provider files:"); - System.err.println - (" " + base + "/security/" + vendor + ".security"); - System.err.println - (" " + base + "/security/" + "classpath" + ".security"); - System.err.println - (" Falling back to standard GNU security provider"); + // If no provider file was found, install our default provider. providers.addElement (new gnu.java.security.provider.Gnu()); } - } // This class can't be instantiated. private Security()