You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: eclipse/terminal/ts.eclipse.ide.terminal.interpreter/src/ts/eclipse/ide/terminal/interpreter/internal/CommandInterpreterProcessor.java
+26-20Lines changed: 26 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -67,7 +67,7 @@ public void onContentReadFromStream(byte[] byteBuffer, int bytesRead) {
67
67
if (processingCommand) {
68
68
// Enter was done
69
69
if (cmd == null) {
70
-
endCommand();
70
+
endCommand(null);
71
71
} else {
72
72
// Initialize interpreter if needed
73
73
if (interpreter == null) {
@@ -82,34 +82,25 @@ public void onContentReadFromStream(byte[] byteBuffer, int bytesRead) {
0 commit comments