From 710ee80270fc1a07d1071bf779eb657fb1d44c80 Mon Sep 17 00:00:00 2001 From: markt Date: Sun, 6 Jan 2008 00:07:57 +0000 Subject: [PATCH] Tabs -> 8 spaces git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@609239 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/jasper/servlet/JspServletWrapper.java | 56 +++++++++++----------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/java/org/apache/jasper/servlet/JspServletWrapper.java b/java/org/apache/jasper/servlet/JspServletWrapper.java index 7df6a8871..8e3ed9559 100644 --- a/java/org/apache/jasper/servlet/JspServletWrapper.java +++ b/java/org/apache/jasper/servlet/JspServletWrapper.java @@ -89,34 +89,34 @@ public class JspServletWrapper { boolean isErrorPage, JspRuntimeContext rctxt) throws JasperException { - this.isTagFile = false; + this.isTagFile = false; this.config = config; this.options = options; this.jspUri = jspUri; ctxt = new JspCompilationContext(jspUri, isErrorPage, options, - config.getServletContext(), - this, rctxt); + config.getServletContext(), + this, rctxt); } /* * JspServletWrapper for tag files. */ public JspServletWrapper(ServletContext servletContext, - Options options, - String tagFilePath, - TagInfo tagInfo, - JspRuntimeContext rctxt, - URL tagFileJarUrl) - throws JasperException { - - this.isTagFile = true; - this.config = null; // not used + Options options, + String tagFilePath, + TagInfo tagInfo, + JspRuntimeContext rctxt, + URL tagFileJarUrl) + throws JasperException { + + this.isTagFile = true; + this.config = null; // not used this.options = options; - this.jspUri = tagFilePath; - this.tripCount = 0; + this.jspUri = tagFilePath; + this.tripCount = 0; ctxt = new JspCompilationContext(jspUri, tagInfo, options, - servletContext, this, rctxt, - tagFileJarUrl); + servletContext, this, rctxt, + tagFileJarUrl); } public JspCompilationContext getJspEngineContext() { @@ -221,9 +221,9 @@ public class JspServletWrapper { } } catch (FileNotFoundException ex) { throw new JasperException(ex); - } + } - return tagHandlerClass; + return tagHandlerClass; } /** @@ -234,12 +234,12 @@ public class JspServletWrapper { */ public Class loadTagFilePrototype() throws JasperException { - ctxt.setPrototypeMode(true); - try { - return loadTagFile(); - } finally { - ctxt.setPrototypeMode(false); - } + ctxt.setPrototypeMode(true); + try { + return loadTagFile(); + } finally { + ctxt.setPrototypeMode(false); + } } /** @@ -266,21 +266,21 @@ public class JspServletWrapper { } public boolean isTagFile() { - return this.isTagFile; + return this.isTagFile; } public int incTripCount() { - return tripCount++; + return tripCount++; } public int decTripCount() { - return tripCount--; + return tripCount--; } public void service(HttpServletRequest request, HttpServletResponse response, boolean precompile) - throws ServletException, IOException, FileNotFoundException { + throws ServletException, IOException, FileNotFoundException { try { -- 2.11.0