MATH-1366

Deprecation.
Interface is not removed yet: Application developers might have to perform non-trivial adaptation to the new API (namely if they were using the "setSeed" methods).
This commit is contained in:
Gilles 2016-05-29 18:34:16 +02:00
parent 525b82ca9f
commit 64c51505a8
1 changed files with 3 additions and 2 deletions

View File

@ -18,11 +18,12 @@ package org.apache.commons.math4.random;
/** /**
* Interface extracted from <code>java.util.Random</code>. This interface is * Interface extracted from <code>java.util.Random</code>.
* implemented by {@link AbstractRandomGenerator}.
* *
* @since 1.1 * @since 1.1
* @deprecated As of 4.0. Please use {@link org.apache.commons.math4.rng.UniformRandomProvider} instead.
*/ */
@Deprecated
public interface RandomGenerator { public interface RandomGenerator {
/** /**