Browse Source

deprecate unused Nullable class

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1842684 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_4_0_1
PJ Fanning 5 years ago
parent
commit
8a2b2f7fef
1 changed files with 5 additions and 0 deletions
  1. 5
    0
      src/ooxml/java/org/apache/poi/openxml4j/util/Nullable.java

+ 5
- 0
src/ooxml/java/org/apache/poi/openxml4j/util/Nullable.java 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;

Loading…
Cancel
Save