Unwrap a variable to its value. @return return the variable value. A null var is mapped to Primitive.VOID
( Variable var )
| 609 | Primitive.VOID |
| 610 | */ |
| 611 | protected Object unwrapVariable( Variable var ) |
| 612 | throws UtilEvalError |
| 613 | { |
| 614 | return (var == null) ? Primitive.VOID : var.getValue(); |
| 615 | } |
| 616 | |
| 617 | /** |
| 618 | @deprecated See #setTypedVariable( String, Class, Object, Modifiers ) |
no test coverage detected