Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/java/org/apache/commons/lang3/RandomUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -237,8 +237,8 @@ public static long nextLong(final long startInclusive, final long endExclusive)
}

/**
* Gets the singleton instance based on {@link SecureRandom#SecureRandom()} which uses an algorithms/providers
* specified in the {@code securerandom.strongAlgorithms} {@link Security} property.
* Gets the singleton instance based on {@link SecureRandom#SecureRandom()} which uses the default algorithm
* and provider of {@link SecureRandom}.
* <p>
* The method {@link SecureRandom#SecureRandom()} is called on-demand.
* </p>
Expand Down
Loading