(String expression, OperatorTypeEnum type)
| 14 | private String expression; |
| 15 | |
| 16 | public Expression(String expression, OperatorTypeEnum type) { |
| 17 | this.type = type; |
| 18 | this.expression = expression; |
| 19 | } |
| 20 | |
| 21 | public boolean isDisable() { |
| 22 | return disable; |
nothing calls this directly
no outgoing calls
no test coverage detected