Changeset 136:7931ee9b41e6
- Timestamp:
- 08/02/08 22:38:21
(4 months ago)
- Author:
- Frank Benoit <benoit@tionex.de>
- branch:
- default
- Message:
Fix path handling, thanks yidabu for reporting.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r129 |
r136 |
|
| 37 | 37 | |
|---|
| 38 | 38 | import tango.io.FileSystem; |
|---|
| | 39 | import tango.io.Path; |
|---|
| 39 | 40 | import tango.io.FilePath; |
|---|
| 40 | 41 | import tango.util.log.Trace; |
|---|
| … | … | |
| 134 | 135 | continue; |
|---|
| 135 | 136 | } |
|---|
| 136 | | res ~= new FilePath( root ); |
|---|
| | 137 | res ~= new FilePath( tango.io.Path.standard( root )); |
|---|
| 137 | 138 | } |
|---|
| 138 | 139 | return res; |
|---|