diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2008-12-03 22:48:23 +0000 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2008-12-03 22:48:23 +0000 |
commit | 76196be483e92e01543c8dc1c488e44ae527db64 (patch) | |
tree | 16cc101b5d1bbe9f810d639ab80b762a0aaa1136 /core/helpers | |
parent | 7bb4b6029df8b17ef8a2ba9c8ce8d6c7b3e015c3 (diff) |
Remove @todo
Diffstat (limited to 'core/helpers')
-rw-r--r-- | core/helpers/MY_file.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/helpers/MY_file.php b/core/helpers/MY_file.php index 89e81204..c460a81a 100644 --- a/core/helpers/MY_file.php +++ b/core/helpers/MY_file.php @@ -19,7 +19,6 @@ */ class file extends file_Core { public function unlink($path) { - // @todo create a unit test if (is_file($path) && is_writable($path)) { return @unlink($path); } else if (is_dir($path) && is_writable($path)) { |