Show
Ignore:
Timestamp:
11/30/08 03:43:39 (1 month ago)
Author:
Frank Benoit <benoit@tionex.de>
branch:
default
Message:

Remove debug prints

Files:

Legend:

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

    r324 r325  
    524524        while( searchRelCp !is 0 ){ 
    525525 
    526             //Trace.formatln( "( i+2 < str.length )          = {}", ( i+2 < str.length )); 
    527             //Trace.formatln( "( str[i+2] & 0xC0 ) is 0x80 ) = {}", (( str[i+2] & 0xC0 ) is 0x80 )); 
    528             //Trace.formatln( "( str[i+1] & 0xC0 ) is 0x80 ) = {}", (( str[i+1] & 0xC0 ) is 0x80 )); 
    529             //Trace.formatln( "( str[i  ] & 0xF0 ) is 0xE0 ) = {}", (( str[i  ] & 0xF0 ) is 0xE0 )); 
    530  
    531526            if( ( i < str.length ) 
    532527            && (( str[i] & 0x80 ) is 0x00 )) 
     
    560555            } 
    561556            searchRelCp--; 
    562             //Trace.formatln(" . "); 
    563557        } 
    564558    } 
     
    569563                if( i < 0 ){ 
    570564                    return startIndex-1; 
    571                     //Trace.formatln( "dwthelper.utils getRelativeCodePointOffset {}: str={}, startIndex={}, searchRelCp={}", __LINE__, str, startIndex, searchRelCp ); 
    572                     //tango.text.convert.Utf.onUnicodeError( "invalid utf8 input", i ); 
    573565                } 
    574566            } while(( str[i] & 0xC0 ) is 0x80 );