Changeset 427

Show
Ignore:
Timestamp:
10/15/07 23:28:17 (1 year ago)
Author:
andrei
Message:

Removed spurious writeln

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • candidate/phobos/std/format.d

    r424 r427  
    20332033        else w.write(obj.toString); 
    20342034    } else static if (isAssociativeArray!(D)) { 
     2035        // somebody rid me of this hack 
    20352036        w.write(std.string.format("%s", obj)); 
    20362037    } else static if (is(D Original == typedef)) { 
     
    20382039    } else { 
    20392040        // last resort: look for toString 
    2040         writeln("Last resort for ", D.stringof); 
    20412041        auto s = obj.toString; 
    20422042        w.write(s);