deprecate unused Nullable class

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1842684 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
PJ Fanning 2018-10-03 07:42:33 +00:00
parent 6b4094650f
commit f3a1ed5a45
1 changed files with 5 additions and 0 deletions

View File

@ -17,12 +17,17 @@
package org.apache.poi.openxml4j.util;
import org.apache.poi.util.Removal;
/**
* An immutable object that could be defined as null.
*
* @author Julien Chable
* @version 0.9
* @deprecated No longer used in POI code base, use {@link java.util.Optional} instead
*/
@Removal(version = "4.2")
@Deprecated
public final class Nullable<E> {
private E value;