diff -r c4c427c00f31 -r d9d8313203af localconnectivityservice/dun/atext/src/DunAtCmdHandler.cpp --- a/localconnectivityservice/dun/atext/src/DunAtCmdHandler.cpp Fri Jul 23 18:35:35 2010 +0800 +++ b/localconnectivityservice/dun/atext/src/DunAtCmdHandler.cpp Mon Aug 09 12:19:11 2010 +0800 @@ -855,20 +855,6 @@ FTRACE(FPrint( _L("CDunAtCmdHandler::ExtractLineFromInputBuffer() (more needed) complete") )); return ETrue; } - // As a last step adjust the possible multiple IsDelimiterCharacter() - // characters and set length of iLineBuffer. Leave iEndIndex untouched. - lineLength = iLineBuffer.Length(); - for ( TInt i=lineLength-1; i>=0; i-- ) - { - TChar character = iLineBuffer[i]; - if ( !IsDelimiterCharacter(character) ) - { - iLineBuffer.SetLength( i + 1 ); - FTRACE(FPrint( _L("CDunAtCmdHandler::ExtractLineFromInputBuffer() after (%d bytes):"), iLineBuffer.Length() )); - FTRACE(FPrintRaw(iLineBuffer) ); - break; - } - } FTRACE(FPrint( _L("CDunAtCmdHandler::ExtractLineFromInputBuffer() (line found) complete") )); return EFalse; }