Author: ezheleznyakov
Date: 2007-09-28 08:13:10 -0400 (Fri, 28 Sep 2007)
New Revision: 3901
Modified:
trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/expression/VpeAttributeOperand.java
Log:
Little fix with html tag <img/>.
Modified:
trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/expression/VpeAttributeOperand.java
===================================================================
---
trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/expression/VpeAttributeOperand.java 2007-09-28
12:05:00 UTC (rev 3900)
+++
trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/template/expression/VpeAttributeOperand.java 2007-09-28
12:13:10 UTC (rev 3901)
@@ -33,8 +33,8 @@
try {
value = ((Element)sourceNode).getAttribute(name);
- if (!caseSensitive) {
- value = (value == null ? "" : value.toLowerCase());
+ if (value == null) {
+ value = "";
}
} catch (Exception e) {
// throw new VpeExpressionError(x.getMessage());
Show replies by date