Returns the value of the named variable with no encoding applied. @param variableName the name of the variable @return the variable value, or null if not found
(String variableName)
| 277 | * @return the variable value, or null if not found |
| 278 | */ |
| 279 | public String getVariableValue(String variableName) { |
| 280 | return getVariableValue(variableName, ENCODING_NONE); |
| 281 | } |
| 282 | |
| 283 | |
| 284 | /** |
no test coverage detected