jdk/src/java.base/share/classes/java/security/SecureRandom.java
changeset 35718 e6b4f7af3fca
parent 34774 03b4e6dc367b
child 37348 9ccec3170d5e
--- a/jdk/src/java.base/share/classes/java/security/SecureRandom.java	Mon Feb 08 10:46:42 2016 -0800
+++ b/jdk/src/java.base/share/classes/java/security/SecureRandom.java	Mon Feb 08 13:09:16 2016 -0800
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1996, 2015, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 1996, 2016, 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
@@ -472,7 +472,7 @@
      * @param bytes the array to be filled in with random bytes.
      */
     @Override
-    public synchronized void nextBytes(byte[] bytes) {
+    public void nextBytes(byte[] bytes) {
         secureRandomSpi.engineNextBytes(bytes);
     }