Skip to content

Commit

Permalink
Move IO implementation classes to a separate package
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Dec 3, 2020
1 parent 2babe3d commit 04d771c
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,13 +97,6 @@ public AnsiMode getAnsiMode() {
return ansiMode;
}

/**
* Change the mode in which the stream operates.
* If the mode is <code>Strip</code>, then all ansi sequences will be stripped from the stream.
* If the mode is <code>Force</code>, then all
*
* @param ansiMode the new AnsiMod to use
*/
public void setAnsiMode(AnsiMode ansiMode) {
ap = ansiMode == AnsiMode.Strip ? new AnsiProcessor(out) : ansiMode == AnsiMode.Force ? null : processor;
this.ansiMode = ansiMode;
Expand All @@ -113,10 +106,6 @@ public boolean isResetAtUninstall() {
return resetAtUninstall;
}

/**
*
* @param resetAtUninstall whether the
*/
public void setResetAtUninstall(boolean resetAtUninstall) {
this.resetAtUninstall = resetAtUninstall;
}
Expand Down

0 comments on commit 04d771c

Please sign in to comment.