Browse Source

Bug-61947 remove deprecated method

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1819766 13f79535-47bb-0310-9956-ffa450edef68
tags/REL_4_0_0_FINAL
PJ Fanning 6 years ago
parent
commit
a3ddc94776
1 changed files with 0 additions and 13 deletions
  1. 0
    13
      src/java/org/apache/poi/ddf/EscherBoolProperty.java

+ 0
- 13
src/java/org/apache/poi/ddf/EscherBoolProperty.java View File

@@ -52,19 +52,6 @@ public class EscherBoolProperty
return getPropertyValue() != 0;
}

/**
* Whether this boolean property is false
*
* @return true, if this boolean property is false
*
* @deprecated use !isTrue() instead, planed to be removed in POI 3.17
*/
@Deprecated
public boolean isFalse()
{
return !isTrue();
}

// public String toString()
// {
// return "propNum: " + getPropertyNumber()

Loading…
Cancel
Save