Fix indents
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Tue, 19 Oct 2010 14:46:02 +0000 (14:46 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Tue, 19 Oct 2010 14:46:02 +0000 (14:46 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1024250 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/jasper/compiler/PageDataImpl.java

index 14592ee..705fbc9 100644 (file)
@@ -127,7 +127,7 @@ class PageDataImpl extends PageData implements TagConstants {
         }
 
         @Override
-    public void visit(Node.Root n) throws JasperException {
+        public void visit(Node.Root n) throws JasperException {
             visitBody(n);
             if (n == root) {
                 /*
@@ -164,7 +164,7 @@ class PageDataImpl extends PageData implements TagConstants {
         }
 
         @Override
-    public void visit(Node.JspRoot n) throws JasperException {
+        public void visit(Node.JspRoot n) throws JasperException {
             addAttributes(n.getTaglibAttributes());
             addAttributes(n.getNonTaglibXmlnsAttributes());
             addAttributes(n.getAttributes());
@@ -177,7 +177,7 @@ class PageDataImpl extends PageData implements TagConstants {
          * element.
          */
         @Override
-    public void visit(Node.TaglibDirective n) throws JasperException {
+        public void visit(Node.TaglibDirective n) throws JasperException {
             Attributes attrs = n.getAttributes();
             if (attrs != null) {
                 String qName = "xmlns:" + attrs.getValue("prefix");