Skip to content

Commit

Permalink
#36 layoutTag 버그 수정 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
hyunjun19 committed Aug 9, 2016
1 parent 99c97ca commit 1de8422
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion axu4j-tag/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.axisj</groupId>
<artifactId>axu4j</artifactId>
<version>1.2.0-RELEASE</version>
<version>1.2.1-RELEASE</version>
<name>axu4j Taglib</name>
<description>AXU for Java</description>
<url>https://github.com/axisj-com/axu4j</url>
Expand Down
8 changes: 4 additions & 4 deletions axu4j-tag/src/main/java/com/axisj/axu4j/tags/LayoutTag.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
import javax.servlet.jsp.PageContext;
import javax.servlet.jsp.tagext.SimpleTagSupport;
import java.io.*;
import java.util.HashMap;
import java.util.Hashtable;
import java.util.Map;

Expand All @@ -37,9 +38,8 @@ public LayoutTag() throws Exception {
super();
}

//private Map<String, String> divMap = new HashMap<String, String>();
private Hashtable<String, String> divMap = new Hashtable<String, String>();
private Map<String, Object> globalMap = new HashMap<String, Object>();
private Hashtable<String, String> divMap = new Hashtable<String, String>();
private Map<String, Object> globalMap = new HashMap<String, Object>();

private String name;
private String key;
Expand Down Expand Up @@ -102,7 +102,7 @@ public void doTag() throws JspException, IOException {
if (layoutFileReader != null) {
layoutFileReader.close();
}
divMap=null;
divMap = null;
}
}

Expand Down

0 comments on commit 1de8422

Please sign in to comment.