1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-06 00:25:25 +02:00

Add comment regarding probably unnecessary tab handling

This commit is contained in:
Martin Oberhuber 2006-08-29 11:05:23 +00:00
parent dcc8a961a7
commit b9be0f7c4c

View file

@ -84,6 +84,8 @@ public class SshShellOutputReader extends AbstractHostShellOutputReader
break;
case 9:
//Tab: we count tabs at column 8
//TODO Check: SystemViewRemoteOutputAdapter.translateTabs() also translates
//Therefore this special handling here might be unnecessary
if(theDebugLine!=null) theDebugLine.append((char)ch);
int tabIndex = theLine.length() % 8;
while (tabIndex < 8) {