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:
parent
dcc8a961a7
commit
b9be0f7c4c
1 changed files with 2 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue