Author: ekoneil
Date: Mon Feb 14 18:26:31 2005
New Revision: 153880
URL: http://svn.apache.org/viewcvs?view=rev&rev=153880
Log:
Fix the broken CtBindingReport BVT.
A refactor went a got overzealous by changing the string "identifier" to
"_identifier".
BB: self
BVT: NetUI pass (one failure)
Modified:
incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/script/el/tokens/IdentifierToken.java
Modified:
incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/script/el/tokens/IdentifierToken.java
URL:
http://svn.apache.org/viewcvs/incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/script/el/tokens/IdentifierToken.java?view=diff&r1=153879&r2=153880
==============================================================================
---
incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/script/el/tokens/IdentifierToken.java
(original)
+++
incubator/beehive/trunk/netui/src/pageflow/org/apache/beehive/netui/script/el/tokens/IdentifierToken.java
Mon Feb 14 18:26:31 2005
@@ -40,7 +40,7 @@
public Object evaluate(Object value) {
/* todo: error handling */
if(value == null) {
- String msg = "Can not evaluate the _identifier \"" + _identifier +
"\" on a null value object.";
+ String msg = "Can not evaluate the identifier \"" + _identifier +
"\" on a null value object.";
if(LOGGER.isErrorEnabled())
LOGGER.error(msg);
throw new RuntimeException(msg);
@@ -66,7 +66,7 @@
public void update(Object root, Object newValue) {
/* todo: error handling */
if(root == null) {
- String msg = "Can not update the _identifier \"" + _identifier +
"\" on a null value object.";
+ String msg = "Can not update the identifier \"" + _identifier +
"\" on a null value object.";
if(LOGGER.isErrorEnabled())
LOGGER.error(msg);
throw new RuntimeException(msg);