Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
gnodet committed Mar 15, 2017
1 parent 27d9311 commit 91669be
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -443,7 +443,9 @@ protected void processEraseLine(int eraseOption) throws IOException {
protected static final int ATTRIBUTE_INTENSITY_NORMAL = 22; // Intensity; Normal not bold and not faint
protected static final int ATTRIBUTE_UNDERLINE_OFF = 24; // Underline; None
protected static final int ATTRIBUTE_BLINK_OFF = 25; // Blink; off
@Deprecated
protected static final int ATTRIBUTE_NEGATIVE_Off = 27; // Image; Positive
protected static final int ATTRIBUTE_NEGATIVE_OFF = 27; // Image; Positive
protected static final int ATTRIBUTE_CONCEAL_OFF = 28; // Reveal conceal off

protected void processSetAttribute(int attribute) throws IOException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ protected void processSetAttribute(int attribute) throws IOException {
break;
case ATTRIBUTE_NEGATIVE_ON:
break;
case ATTRIBUTE_NEGATIVE_Off:
case ATTRIBUTE_NEGATIVE_OFF:
break;
default:
break;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ protected void processSetAttribute(int attribute) throws IOException {
negative = true;
applyAttribute();
break;
case ATTRIBUTE_NEGATIVE_Off:
case ATTRIBUTE_NEGATIVE_OFF:
negative = false;
applyAttribute();
break;
Expand Down

0 comments on commit 91669be

Please sign in to comment.