diff --git a/src/java/org/apache/poi/ddf/EscherBoolProperty.java b/src/java/org/apache/poi/ddf/EscherBoolProperty.java index a0f9d33cd59..ddb2ec3ea05 100644 --- a/src/java/org/apache/poi/ddf/EscherBoolProperty.java +++ b/src/java/org/apache/poi/ddf/EscherBoolProperty.java @@ -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()