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

@@ -12,7 +12,8 @@ public class KeyHandlerTest extends TestCase {
if (buffer.length() > 0) {
buffer.append(" ");
}
buffer.append("0x" + Integer.toHexString(s.charAt(i)));
buffer.append("0x");
buffer.append(Integer.toHexString(s.charAt(i)));
}
return buffer.toString();
}