Author: markt Date: Sat Dec 23 13:58:57 2006 New Revision: 489929 URL: http://svn.apache.org/viewvc?view=rev&rev=489929 Log: Tabs to 8 spaces. No functional change.
Modified: tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/JavacErrorDetail.java Modified: tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/JavacErrorDetail.java URL: http://svn.apache.org/viewvc/tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/JavacErrorDetail.java?view=diff&rev=489929&r1=489928&r2=489929 ============================================================================== --- tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/JavacErrorDetail.java (original) +++ tomcat/jasper/tc5.5.x/src/share/org/apache/jasper/compiler/JavacErrorDetail.java Sat Dec 23 13:58:57 2006 @@ -40,12 +40,12 @@ * @param errMsg The compilation error message */ public JavacErrorDetail(String javaFileName, - int javaLineNum, - StringBuffer errMsg) { + int javaLineNum, + StringBuffer errMsg) { - this.javaFileName = javaFileName; - this.javaLineNum = javaLineNum; - this.errMsg = errMsg; + this.javaFileName = javaFileName; + this.javaLineNum = javaLineNum; + this.errMsg = errMsg; this.jspBeginLineNum = -1; } @@ -62,14 +62,14 @@ * @param errMsg The compilation error message */ public JavacErrorDetail(String javaFileName, - int javaLineNum, - String jspFileName, - int jspBeginLineNum, - StringBuffer errMsg) { + int javaLineNum, + String jspFileName, + int jspBeginLineNum, + StringBuffer errMsg) { this(javaFileName, javaLineNum, errMsg); - this.jspFileName = jspFileName; - this.jspBeginLineNum = jspBeginLineNum; + this.jspFileName = jspFileName; + this.jspBeginLineNum = jspBeginLineNum; } /** @@ -79,7 +79,7 @@ * @return Java source file name */ public String getJavaFileName() { - return this.javaFileName; + return this.javaFileName; } /** @@ -88,7 +88,7 @@ * @return Compilation error line number */ public int getJavaLineNumber() { - return this.javaLineNum; + return this.javaLineNum; } /** @@ -98,7 +98,7 @@ * @return JSP file from which the Java source file was generated. */ public String getJspFileName() { - return this.jspFileName; + return this.jspFileName; } /** @@ -109,7 +109,7 @@ * compilation error */ public int getJspBeginLineNumber() { - return this.jspBeginLineNum; + return this.jspBeginLineNum; } /** @@ -118,6 +118,6 @@ * @return Compilation error message */ public String getErrorMessage() { - return this.errMsg.toString(); + return this.errMsg.toString(); } } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]