diff dwt/dwthelper/utils.d @ 276:9d67c3170a58 Release-1

Removed version=TANGOSVN for release 0.99.7
author Frank Benoit <benoit@tionex.de>
date Sat, 26 Jul 2008 02:52:25 +0200
parents d472fae79005
children 05e48e1e65d1
line wrap: on
line diff
--- a/dwt/dwthelper/utils.d	Mon Jul 21 22:38:49 2008 +0200
+++ b/dwt/dwthelper/utils.d	Sat Jul 26 02:52:25 2008 +0200
@@ -149,30 +149,15 @@
     }
 
     public static String toHexString( int i ){
-version(TANGOSVN) {
         return tango.text.convert.Integer.toString(i, "x" );
-}
-else{
-        return tango.text.convert.Integer.toString(i, tango.text.convert.Integer.Style.Hex );
-}
     }
 
     public static String toOctalString( int i ){
-version(TANGOSVN) {
         return tango.text.convert.Integer.toString(i, "o" );
-}
-else{
-        return tango.text.convert.Integer.toString(i, tango.text.convert.Integer.Style.Octal );
-}
     }
 
     public static String toBinaryString( int i ){
-version(TANGOSVN) {
         return tango.text.convert.Integer.toString(i, "b" );
-}
-else{
-        return tango.text.convert.Integer.toString(i, tango.text.convert.Integer.Style.Binary );
-}
     }
 
     public static String toString( int i ){
@@ -650,7 +635,6 @@
 public alias tango.stdc.stringz.fromString16z fromString16z;
 
 static String toHex(uint value, bool prefix = true, int radix = 8){
-version(TANGOSVN) {
     return tango.text.convert.Integer.toString(
             value,
             radix is 10 ? "d" :
@@ -658,17 +642,6 @@
             radix is 16 ? "x" :
                           "d" );
 }
-else{
-    return tango.text.convert.Integer.toString(
-            value,
-            radix is 10 ? tango.text.convert.Integer.Style.Signed :
-            radix is  8 ? tango.text.convert.Integer.Style.Octal  :
-            radix is 16 ? tango.text.convert.Integer.Style.Hex    :
-                          tango.text.convert.Integer.Style.Signed,
-            prefix ? tango.text.convert.Integer.Flags.Prefix : tango.text.convert.Integer.Flags.None
-            );
-}
-}
 
 class RuntimeException : Exception {
     this( String e = null){