You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2022/09/26 13:48:13 UTC

[commons-rng] 02/08: Add missing @since tags

This is an automated email from the ASF dual-hosted git repository.

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-rng.git

commit dec8df1caa0856f197fb002894f8b1346155b15f
Author: aherbert <ah...@apache.org>
AuthorDate: Mon Sep 26 13:09:49 2022 +0100

    Add missing @since tags
---
 .../src/main/java/org/apache/commons/rng/core/util/RandomStreams.java  | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/commons-rng-core/src/main/java/org/apache/commons/rng/core/util/RandomStreams.java b/commons-rng-core/src/main/java/org/apache/commons/rng/core/util/RandomStreams.java
index bff9eccd..003addd3 100644
--- a/commons-rng-core/src/main/java/org/apache/commons/rng/core/util/RandomStreams.java
+++ b/commons-rng-core/src/main/java/org/apache/commons/rng/core/util/RandomStreams.java
@@ -26,6 +26,8 @@ import org.apache.commons.rng.UniformRandomProvider;
 
 /**
  * Utility for creating streams using a source of randomness.
+ *
+ * @since 1.5
  */
 public final class RandomStreams {
     /** The number of bits of each random character in the seed.
@@ -36,6 +38,7 @@ public final class RandomStreams {
      * A factory for creating objects using a seed and a using a source of randomness.
      *
      * @param <T> the object type
+     * @since 1.5
      */
     public interface ObjectFactory<T> {
         /**