mirror of https://github.com/apache/nifi.git
NIFI-1771 deprecated ObjectHolder
This closes #351. Signed-off-by: Andy LoPresto <alopresto@apache.org>
This commit is contained in:
parent
5b2490f1e8
commit
13488fd9b3
|
@ -16,10 +16,16 @@
|
|||
*/
|
||||
package org.apache.nifi.util;
|
||||
|
||||
import java.util.concurrent.atomic.AtomicReference;
|
||||
|
||||
/**
|
||||
* @deprecated As of release 0.7.0. Please use {@link AtomicReference}
|
||||
*
|
||||
* A bean that holds a single value of type T.
|
||||
*
|
||||
*/
|
||||
|
||||
@Deprecated
|
||||
public class ObjectHolder<T> {
|
||||
|
||||
private T value;
|
||||
|
|
Loading…
Reference in New Issue