tmiller     01/07/12 07:26:07

  Modified:    java/src/org/apache/xalan/xsltc/trax
                        TransformerFactoryImpl.java
  Log:
  removed obselete try/catch
  
  Revision  Changes    Path
  1.4       +2 -8      
xml-xalan/java/src/org/apache/xalan/xsltc/trax/TransformerFactoryImpl.java
  
  Index: TransformerFactoryImpl.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xalan/java/src/org/apache/xalan/xsltc/trax/TransformerFactoryImpl.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- TransformerFactoryImpl.java       2001/06/27 18:46:40     1.3
  +++ TransformerFactoryImpl.java       2001/07/12 14:26:03     1.4
  @@ -1,5 +1,5 @@
   /*
  - * @(#)$Id: TransformerFactoryImpl.java,v 1.3 2001/06/27 18:46:40 tmiller Exp $
  + * @(#)$Id: TransformerFactoryImpl.java,v 1.4 2001/07/12 14:26:03 tmiller Exp $
    *
    * The Apache Software License, Version 1.1
    *
  @@ -259,13 +259,7 @@
        // check if destination has been set with system property
        String transletDestDir = System.getProperty("transletPool");
        if (transletDestDir != null) {
  -         try {
  -             xsltc.setDestDirectory(transletDestDir);
  -         } catch(CompilerException e)  {
  -             throw new TransformerConfigurationException(
  -                 "System property 'transletPool' was set to  " + 
  -                 transletDestDir + ", " + e );
  -         }
  +         xsltc.setDestDirectory(transletDestDir);
        }
   
           // compile stylesheet
  
  
  

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

Reply via email to