Skip to content

Commit

Permalink
Bug-61947 remove deprecated method
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1819766 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
pjfanning committed Jan 1, 2018
1 parent 272e33e commit d10ec59
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions src/java/org/apache/poi/ddf/EscherBoolProperty.java
Expand Up @@ -52,19 +52,6 @@ public boolean isTrue()
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()
Expand Down

0 comments on commit d10ec59

Please sign in to comment.