Author: scabanovich
Date: 2007-09-05 09:29:17 -0400 (Wed, 05 Sep 2007)
New Revision: 3455
Modified:
trunk/struts/plugins/org.jboss.tools.struts/src/org/jboss/tools/struts/model/helpers/path/CreateActionForwardSupport.java
Log:
JBIDE-532
Modified:
trunk/struts/plugins/org.jboss.tools.struts/src/org/jboss/tools/struts/model/helpers/path/CreateActionForwardSupport.java
===================================================================
---
trunk/struts/plugins/org.jboss.tools.struts/src/org/jboss/tools/struts/model/helpers/path/CreateActionForwardSupport.java 2007-09-05
12:47:18 UTC (rev 3454)
+++
trunk/struts/plugins/org.jboss.tools.struts/src/org/jboss/tools/struts/model/helpers/path/CreateActionForwardSupport.java 2007-09-05
13:29:17 UTC (rev 3455)
@@ -70,7 +70,10 @@
private void resetTiles() {
tiles.clear();
- tiles.addAll(StrutsProcessStructureHelper.instance.getTiles(getTarget()));
+ Set<String> tilePaths =
StrutsProcessStructureHelper.instance.getTiles(getTarget());
+ for (String s : tilePaths) {
+ tiles.add(s.replace("#", "/"));
+ }
p.put("tiles", tiles);
}
Show replies by date