Show
Ignore:
Timestamp:
05/04/08 18:42:55 (4 years ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

reverted char[] to String

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • dwt/dwthelper/System.d

    r219 r238  
    33 */ 
    44module dwt.dwthelper.System; 
     5 
     6import dwt.dwthelper.utils; 
    57 
    68import tango.core.Exception; 
     
    116118    alias SimpleType!(ubyte[]).arraycopy arraycopy; 
    117119    alias SimpleType!(ulong[]).arraycopy arraycopy; 
    118     alias SimpleType!(char[]).arraycopy arraycopy; 
     120    alias SimpleType!(String).arraycopy arraycopy; 
    119121    alias SimpleType!(wchar[]).arraycopy arraycopy; 
    120122    alias SimpleType!(Object[]).arraycopy arraycopy; 
     
    136138    } 
    137139 
    138     public static char[] getProperty( char[] key ){ 
     140    public static String getProperty( String key ){ 
    139141        switch( key ){ 
    140142        case "os.name": return "linux";