Skip to content

Commit 9f0981f

Browse files
authored
Apply suggestion from @trancexpress
1 parent 5c2fefa commit 9f0981f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

debug/org.eclipse.ui.console/src/org/eclipse/ui/internal/console/IOConsolePartitioner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -796,7 +796,7 @@ private void processPendingPartitions() {
796796
int pendingSize = 0;
797797
IOConsoleOutputStream stream = pendingCopy.get(0).stream;
798798
for (PendingPartition p : pendingCopy) {
799-
if (p.stream != stream) {
799+
if (p.stream == stream) {
800800
sizeHint += p.text.length();
801801
}
802802
pendingSize += p.text.length();

0 commit comments

Comments
 (0)