[Webfunds-commits] java/webfunds/utils SecureRandomHack.java

Ian Grigg iang@cypherpunks.ai
Sun, 4 Jun 2000 20:56:15 -0400 (AST)


iang        00/06/04 20:56:15

  Modified:    webfunds/utils SecureRandomHack.java
  Log:
  Standard is currently that everything writes to System.err.

Revision  Changes    Path
1.3       +3 -3      java/webfunds/utils/SecureRandomHack.java

Index: SecureRandomHack.java
===================================================================
RCS file: /home/webfunds/cvsroot/java/webfunds/utils/SecureRandomHack.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- SecureRandomHack.java	2000/06/01 01:03:35	1.2
+++ SecureRandomHack.java	2000/06/05 00:56:15	1.3
@@ -1,4 +1,4 @@
-/* $Id: SecureRandomHack.java,v 1.2 2000/06/01 01:03:35 gelderen Exp $
+/* $Id: SecureRandomHack.java,v 1.3 2000/06/05 00:56:15 iang Exp $
  *
  * Copyright (c) 2000 Systemics Inc. on behalf of
  * The WebFunds Development Team. All rights reserved.
@@ -22,7 +22,7 @@
  * This will only improve speed on UN*X, Windows and Mac don't have 
  * a /dev/random nor something equivalent.
  *
- * @version $Revision: 1.2 $
+ * @version $Revision: 1.3 $
  * @author Jeroen C. van Gelderen (gelderen@systemics.com)
  */
 public final class SecureRandomHack
@@ -81,7 +81,7 @@
         catch(IOException e)
         {
             e.printStackTrace();
-            System.out.println("Ignoring exception: " + e);
+            System.err.println("Ignoring exception: " + e);
             return null;
         }
     }