tmiller     01/06/27 12:03:08

  Modified:    java/src/org/apache/xalan/xsltc/compiler XSLTC.java
  Log:
  made private method setDestDirectory() public to
  support the new transletPool system property.
  
  Revision  Changes    Path
  1.10      +2 -2      
xml-xalan/java/src/org/apache/xalan/xsltc/compiler/XSLTC.java
  
  Index: XSLTC.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xalan/java/src/org/apache/xalan/xsltc/compiler/XSLTC.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- XSLTC.java        2001/06/12 13:51:23     1.9
  +++ XSLTC.java        2001/06/27 19:03:07     1.10
  @@ -1,5 +1,5 @@
   /*
  - * @(#)$Id: XSLTC.java,v 1.9 2001/06/12 13:51:23 morten Exp $
  + * @(#)$Id: XSLTC.java,v 1.10 2001/06/27 19:03:07 tmiller Exp $
    *
    * The Apache Software License, Version 1.1
    *
  @@ -341,7 +341,7 @@
        return _debug;
       }
       
  -    private void setDestDirectory(String dstDirName) throws 
CompilerException {
  +    public void setDestDirectory(String dstDirName) throws CompilerException 
{
        final File dir = new File(dstDirName);
        if (dir.exists() || dir.mkdirs()) {
            _destDir = dir;
  
  
  

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

Reply via email to