--- jsr166/src/main/java/util/SplittableRandom.java 2013/08/22 23:36:06 1.18 +++ jsr166/src/main/java/util/SplittableRandom.java 2013/08/24 06:20:15 1.20 @@ -83,7 +83,6 @@ import java.util.stream.DoubleStream; * default-constructed instances do not use a cryptographically random * seed unless the {@linkplain System#getProperty system property} * {@code java.util.secureRandomSeed} is set to {@code true}. - * * @author Guy Steele * @author Doug Lea @@ -147,7 +146,7 @@ public class SplittableRandom { * we use an AtomicLong to represent the seed rather than use an * explicit SplittableRandom. To bootstrap the seeder, we start * off using a seed based on current time and host unless the - * SecureRandomSeed property is set. This serves as a + * java.util.secureRandomSeed property is set. This serves as a * slimmed-down (and insecure) variant of SecureRandom that also * avoids stalls that may occur when using /dev/random. *