Skip to content

Commit

Permalink
Creating output panel if not present
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Feb 9, 2015
1 parent c6a61c7 commit 5fdb6b6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class NbUIOutput implements UIOutput {
private final PrintStream err;

public NbUIOutput() {
this.io = IOProvider.getDefault().getIO("JBoss Forge", false);
this.io = IOProvider.getDefault().getIO("JBoss Forge", true);
this.out = new PrintStream(new WriterOutputStream(this.io.getOut()), true);
this.err = new PrintStream(new WriterOutputStream(this.io.getErr()), true);
}
Expand Down

0 comments on commit 5fdb6b6

Please sign in to comment.