Changeset 267

Show
Ignore:
Timestamp:
10/25/07 01:49:31 (8 months ago)
Author:
hans
Message:

Applying fix to abstract method, leftover from patch for #155

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/2.3/classes/phing/system/io/Win32FileSystem.php

    r258 r267  
    472472        return $vv; 
    473473    } 
    474  
    475         /** 
    476      * Whether file can be deleted. 
    477      *  
    478      * This is currently returning whether the specified file is 
    479      * writable.  This is likely wrong for NTFS file systems, but 
    480      * I'm not sure whether PHP can see the NTFS delete perm ... 
    481      *  
    482      * @param PhingFile $f 
    483      * @return boolean 
    484      */ 
    485     abstract function canDelete(PhingFile $f); 
    486474     
    487475} 
  • trunk/classes/phing/system/io/Win32FileSystem.php

    r262 r267  
    472472        return $vv; 
    473473    } 
    474  
    475         /** 
    476      * Whether file can be deleted. 
    477      *  
    478      * This is currently returning whether the specified file is 
    479      * writable.  This is likely wrong for NTFS file systems, but 
    480      * I'm not sure whether PHP can see the NTFS delete perm ... 
    481      *  
    482      * @param PhingFile $f 
    483      * @return boolean 
    484      */ 
    485     abstract function canDelete(PhingFile $f); 
    486474     
    487475}