luehe       2004/05/18 12:00:29

  Modified:    jasper2/src/share/org/apache/jasper JspC.java
  Log:
  Fixed indentation prior to making changes
  
  Revision  Changes    Path
  1.77      +12 -11    
jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/JspC.java
  
  Index: JspC.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-tomcat-jasper/jasper2/src/share/org/apache/jasper/JspC.java,v
  retrieving revision 1.76
  retrieving revision 1.77
  diff -u -r1.76 -r1.77
  --- JspC.java 17 May 2004 23:48:22 -0000      1.76
  +++ JspC.java 18 May 2004 19:00:29 -0000      1.77
  @@ -480,7 +480,7 @@
        * @param encodingName The name, e.g. "UTF-8"
        */
       public void setJavaEncoding(String encodingName) {
  -      javaEncoding = encodingName;
  +        javaEncoding = encodingName;
       }
   
       public boolean getFork() {
  @@ -831,14 +831,14 @@
               if (uriRoot == null) {
                   if( pages.size() == 0 ) {
                       throw new JasperException(
  -                                
Localizer.getMessage("jsp.error.jspc.missingTarget"));
  +                        Localizer.getMessage("jsp.error.jspc.missingTarget"));
                   }
                   String firstJsp=(String)pages.elementAt( 0 );
                   File firstJspF = new File( firstJsp );
                   if (!firstJspF.exists()) {
  -                   throw new JasperException(
  -                       Localizer.getMessage("jspc.error.fileDoesNotExist",
  -                                            firstJsp));
  +                    throw new JasperException(
  +                        Localizer.getMessage("jspc.error.fileDoesNotExist",
  +                                             firstJsp));
                   }
                   locateUriRoot( firstJspF );
               }
  @@ -853,12 +853,12 @@
   
               if (uriRoot == null) {
                   throw new JasperException(
  -                            Localizer.getMessage("jsp.error.jspc.no_uriroot"));
  +                    Localizer.getMessage("jsp.error.jspc.no_uriroot"));
               }
               File uriRootF = new File(uriRoot);
               if (!uriRootF.exists() || !uriRootF.isDirectory()) {
                   throw new JasperException(
  -                            Localizer.getMessage("jsp.error.jspc.uriroot_not_dir"));
  +                    Localizer.getMessage("jsp.error.jspc.uriroot_not_dir"));
               }
   
               initWebXml();
  @@ -1082,10 +1082,11 @@
                       if (g.exists() && g.isDirectory()) {
                           uriRoot = f.getCanonicalPath();
                           uriBase = tUriBase;
  -            if (log.isInfoEnabled()) {
  -                log.info(Localizer.getMessage("jspc.implicit.uriRoot",
  -                              uriRoot));
  -            }
  +                        if (log.isInfoEnabled()) {
  +                            log.info(Localizer.getMessage(
  +                                        "jspc.implicit.uriRoot",
  +                                        uriRoot));
  +                     }
                           break;
                       }
                       if (f.exists() && f.isDirectory()) {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to