Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b5ce0603 authored by David van Tonder's avatar David van Tonder Committed by Gerrit Code Review
Browse files

Merge "CMFileManager : Fix duplicate debugging output" into jellybean

parents 8a0b4b79 8c8af16d
Loading
Loading
Loading
Loading
+4 −5
Original line number Diff line number Diff line
@@ -727,16 +727,15 @@ public abstract class ShellConsole extends Console implements Program.ProgramLis

                            if (finished) {
                                if (!async) {
                                    ShellConsole.this.toStdIn(sb.toString());
                                    ShellConsole.this.toStdIn(s);
                                }

                                //Notify the end
                                notifyProcessFinished();
                                break;
                            }

                            if (!async) {
                                ShellConsole.this.toStdIn(sb.toString());
                            if (!async && !finished) {
                                ShellConsole.this.toStdIn(s);
                            }

                            //Wait for buffer to be filled
@@ -850,7 +849,7 @@ public abstract class ShellConsole extends Console implements Program.ProgramLis
                                        ((AsyncResultProgram)ShellConsole.this.mActiveCommand);
                                program.parsePartialErrResult(s);
                            }
                            toStdErr(sb.toString());
                            toStdErr(s);

                            //Wait for buffer to be filled
                            try {