jdk/src/windows/classes/sun/security/provider/NativePRNG.java
changeset 16915 675d1569af3e
parent 5506 202f599c92aa
--- a/jdk/src/windows/classes/sun/security/provider/NativePRNG.java	Thu Apr 11 19:36:52 2013 -0700
+++ b/jdk/src/windows/classes/sun/security/provider/NativePRNG.java	Thu Apr 11 21:03:24 2013 -0700
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2003, 2013, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -39,4 +39,15 @@
         return false;
     }
 
+    public static final class NonBlocking {
+        static boolean isAvailable() {
+            return false;
+        }
+    }
+
+    public static final class Blocking {
+        static boolean isAvailable() {
+            return false;
+        }
+    }
 }