Skip to content

Commit

Permalink
Condition isElementVisible : Clean useless ENUM and remove cleanValue…
Browse files Browse the repository at this point in the history
…2 for CONDITIONOPERATOR_IFELEMENTNOTVISIBLE
  • Loading branch information
bcivel committed Jan 16, 2025
1 parent 55619a0 commit ef4994c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ public enum ConditionOperatorEnum {
CONDITIONOPERATOR_IFELEMENTNOTPRESENT("ifElementNotPresent", true),
CONDITIONOPERATOR_IFELEMENTVISIBLE("ifElementVisible", true),
CONDITIONOPERATOR_IFELEMENTNOTVISIBLE("ifElementNotVisible", true),
CONDITIONOPERATOR_IFELEMENTNOTPRESENTANDNOTVISIBLE("ifElementNotPresentAndNotVisible", true),
CONDITIONOPERATOR_IFPROPERTYEXIST("ifPropertyExist", false),
CONDITIONOPERATOR_IFPROPERTYNOTEXIST("ifPropertyNotExist", false),
CONDITIONOPERATOR_IFNUMERICEQUAL("ifNumericEqual", false),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,6 @@ public String cleanValue2(String condition, String value2) {
case CONDITIONOPERATOR_IFELEMENTPRESENT:
case CONDITIONOPERATOR_IFELEMENTNOTPRESENT:
case CONDITIONOPERATOR_IFELEMENTVISIBLE:
case CONDITIONOPERATOR_IFELEMENTNOTVISIBLE:
return "";
default:
return value2;
Expand Down

0 comments on commit ef4994c

Please sign in to comment.