Author: jholmes
Date: Sat Jun 14 15:07:52 2008
New Revision: 667889

URL: http://svn.apache.org/viewvc?rev=667889&view=rev
Log:
Fix formatting.

Modified:
    
struts/maven/trunk/struts-annotations/src/main/java/org/apache/struts/annotations/taglib/apt/TagAnnotationProcessor.java

Modified: 
struts/maven/trunk/struts-annotations/src/main/java/org/apache/struts/annotations/taglib/apt/TagAnnotationProcessor.java
URL: 
http://svn.apache.org/viewvc/struts/maven/trunk/struts-annotations/src/main/java/org/apache/struts/annotations/taglib/apt/TagAnnotationProcessor.java?rev=667889&r1=667888&r2=667889&view=diff
==============================================================================
--- 
struts/maven/trunk/struts-annotations/src/main/java/org/apache/struts/annotations/taglib/apt/TagAnnotationProcessor.java
 (original)
+++ 
struts/maven/trunk/struts-annotations/src/main/java/org/apache/struts/annotations/taglib/apt/TagAnnotationProcessor.java
 Sat Jun 14 15:07:52 2008
@@ -114,7 +114,7 @@
             tag.setTldBodyContent((String) values.get("tldBodyContent"));
             tag.setTldTagClass((String) values.get("tldTagClass"));
             tag.setDeclaredType(typeName);
-           tag.setAllowDynamicAttributes((Boolean) 
values.get("allowDynamicAttributes"));
+            tag.setAllowDynamicAttributes((Boolean) 
values.get("allowDynamicAttributes"));
             // add to map
             tags.put(typeName, tag);
         }
@@ -320,9 +320,9 @@
             // taglib
             Element tagLib = document.createElement("taglib");
             tagLib.setAttribute("xmlns", "http://java.sun.com/xml/ns/j2ee";);
-           tagLib.setAttribute("xmlns:xsi", 
"http://www.w3.org/2001/XMLSchema-instance";);
-           tagLib.setAttribute("xsi:schemaLocation", 
"http://java.sun.com/xml/ns/j2ee 
http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd";);
-           tagLib.setAttribute("version", getOption("jspVersion"));
+            tagLib.setAttribute("xmlns:xsi", 
"http://www.w3.org/2001/XMLSchema-instance";);
+            tagLib.setAttribute("xsi:schemaLocation", 
"http://java.sun.com/xml/ns/j2ee 
http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd";);
+            tagLib.setAttribute("version", getOption("jspVersion"));
             document.appendChild(tagLib);
             // tag lib attributes
             appendTextNode(document, tagLib, "description",


Reply via email to