adammurdoch    2003/02/19 17:34:33

  Modified:    vfs/src/java/org/apache/commons/vfs/impl
                        VirtualFileSystem.java
               vfs/src/java/org/apache/commons/vfs/provider
                        AbstractFileSystem.java
               vfs/src/java/org/apache/commons/vfs FileSystem.java
  Log:
  Fixed spelling of FileSystem.removeJunction().
  
  Revision  Changes    Path
  1.7       +2 -2      
jakarta-commons-sandbox/vfs/src/java/org/apache/commons/vfs/impl/VirtualFileSystem.java
  
  Index: VirtualFileSystem.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons-sandbox/vfs/src/java/org/apache/commons/vfs/impl/VirtualFileSystem.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- VirtualFileSystem.java    13 Feb 2003 04:28:45 -0000      1.6
  +++ VirtualFileSystem.java    20 Feb 2003 01:34:31 -0000      1.7
  @@ -181,7 +181,7 @@
       /**
        * Removes a junction from this file system.
        */
  -    public void removeJuntion( final String junctionPoint )
  +    public void removeJunction( final String junctionPoint )
           throws FileSystemException
       {
           final FileName junctionName = getRootName().resolveName( junctionPoint );
  
  
  
  1.18      +1 -1      
jakarta-commons-sandbox/vfs/src/java/org/apache/commons/vfs/provider/AbstractFileSystem.java
  
  Index: AbstractFileSystem.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons-sandbox/vfs/src/java/org/apache/commons/vfs/provider/AbstractFileSystem.java,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- AbstractFileSystem.java   12 Feb 2003 07:56:12 -0000      1.17
  +++ AbstractFileSystem.java   20 Feb 2003 01:34:33 -0000      1.18
  @@ -271,7 +271,7 @@
       /**
        * Removes a junction from this file system.
        */
  -    public void removeJuntion( final String junctionPoint ) throws 
FileSystemException
  +    public void removeJunction( final String junctionPoint ) throws 
FileSystemException
       {
           throw new FileSystemException( 
"vfs.provider/junctions-not-supported.error", rootName );
       }
  
  
  
  1.10      +2 -2      
jakarta-commons-sandbox/vfs/src/java/org/apache/commons/vfs/FileSystem.java
  
  Index: FileSystem.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-commons-sandbox/vfs/src/java/org/apache/commons/vfs/FileSystem.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- FileSystem.java   12 Feb 2003 07:56:09 -0000      1.9
  +++ FileSystem.java   20 Feb 2003 01:34:33 -0000      1.10
  @@ -191,7 +191,7 @@
        * @throws FileSystemException
        *      On error removing the junction.
        */
  -    void removeJuntion( String junctionPoint ) throws FileSystemException;
  +    void removeJunction( String junctionPoint ) throws FileSystemException;
   
       /**
        * Creates a temporary local copy of a file and its descendents.  If
  
  
  

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

Reply via email to