From: markt Date: Tue, 19 Oct 2010 14:46:02 +0000 (+0000) Subject: Fix indents X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=720e1f7a7e0a237f3683f736782cd7d780d2090e;p=tomcat7.0 Fix indents git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1024250 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/org/apache/jasper/compiler/PageDataImpl.java b/java/org/apache/jasper/compiler/PageDataImpl.java index 14592eeea..705fbc93b 100644 --- a/java/org/apache/jasper/compiler/PageDataImpl.java +++ b/java/org/apache/jasper/compiler/PageDataImpl.java @@ -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");