diff dwt/dwthelper/File.d @ 264:a63e2cd5485e

Removed version=TANGOSVN for release 0.99.7
author Frank Benoit <benoit@tionex.de>
date Sat, 26 Jul 2008 02:48:20 +0200
parents d10ff1f47f84
children 463d461e6e78
line wrap: on
line diff
--- a/dwt/dwthelper/File.d	Sat Jul 26 02:08:41 2008 +0200
+++ b/dwt/dwthelper/File.d	Sat Jul 26 02:48:20 2008 +0200
@@ -5,12 +5,7 @@
 
 import dwt.dwthelper.utils;
 
-version(TANGOSVN) {
-    static import tango.io.model.IFile;
-}
-else{
-    static import tango.io.FileConst;
-}
+static import tango.io.model.IFile;
 static import tango.io.FilePath;
 static import tango.io.FileSystem;
 
@@ -24,18 +19,10 @@
     private tango.io.FilePath.FilePath mFilePath;
 
     static this(){
-version(TANGOSVN) {
         separator = tango.io.model.IFile.FileConst.PathSeparatorString;
         separatorChar = tango.io.model.IFile.FileConst.PathSeparatorChar;
         pathSeparator = tango.io.model.IFile.FileConst.SystemPathString;
         pathSeparatorChar = tango.io.model.IFile.FileConst.SystemPathChar;
-}
-else{
-        separator = tango.io.FileConst.FileConst.PathSeparatorString;
-        separatorChar = tango.io.FileConst.FileConst.PathSeparatorChar;
-        pathSeparator = tango.io.FileConst.FileConst.SystemPathString;
-        pathSeparatorChar = tango.io.FileConst.FileConst.SystemPathChar;
-}
     }
 
     public this ( String pathname ){