You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by er...@apache.org on 2016/05/29 21:22:05 UTC

[math] MATH-1319

Repository: commons-math
Updated Branches:
  refs/heads/develop aca1cd3ec -> e7c42ed0f


MATH-1319

Deprecating class that it relies on a deprecated API (cf. MATH-1366).


Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/e7c42ed0
Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/e7c42ed0
Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/e7c42ed0

Branch: refs/heads/develop
Commit: e7c42ed0fb83faa2b57184cb72f6d9e8b621ccd5
Parents: aca1cd3
Author: Gilles <gi...@harfang.homelinux.org>
Authored: Sun May 29 23:11:14 2016 +0200
Committer: Gilles <gi...@harfang.homelinux.org>
Committed: Sun May 29 23:11:14 2016 +0200

----------------------------------------------------------------------
 .../apache/commons/math4/random/SynchronizedRandomGenerator.java   | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-math/blob/e7c42ed0/src/main/java/org/apache/commons/math4/random/SynchronizedRandomGenerator.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/math4/random/SynchronizedRandomGenerator.java b/src/main/java/org/apache/commons/math4/random/SynchronizedRandomGenerator.java
index 4024043..9713eef 100644
--- a/src/main/java/org/apache/commons/math4/random/SynchronizedRandomGenerator.java
+++ b/src/main/java/org/apache/commons/math4/random/SynchronizedRandomGenerator.java
@@ -24,7 +24,9 @@ package org.apache.commons.math4.random;
  * class.
  *
  * @since 3.1
+ * @deprecated As of 4.0. No replacement.
  */
+@Deprecated
 public class SynchronizedRandomGenerator implements RandomGenerator {
     /** Object to which all calls will be delegated. */
     private final RandomGenerator wrapped;