Fix minor Android Studio inspection warnings

This commit is contained in:
Fredrik Fornwall
2015-10-25 16:39:34 +01:00
parent 64c349093b
commit 05e250bb96
4 changed files with 8 additions and 4 deletions

View File

@@ -1738,7 +1738,7 @@ public final class TerminalEmulator {
default:
// The ESC character was not followed by a \, so insert the ESC and
// the current character in arg buffer.
collectOSCArgs((byte) 033);
collectOSCArgs(27);
collectOSCArgs(b);
continueSequence(ESC_OSC);
break;