1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-26 06:50:07 +02:00

Redundant String.toString()

This commit is contained in:
Pavel Elagin 2018-08-08 12:55:25 +03:00
parent da58e22afe
commit 723b5af50f
2 changed files with 4 additions and 4 deletions

View File

@ -528,7 +528,7 @@ public class No1F1Support extends AbstractBTLEDeviceSupport {
byte[] msg;
// send header
bytes = header.toString().getBytes("EUC-JP");
bytes = header.getBytes("EUC-JP");
length = min(bytes.length, 18);
msg = new byte[length + 2];
msg[0] = No1F1Constants.CMD_NOTIFICATION;
@ -537,7 +537,7 @@ public class No1F1Support extends AbstractBTLEDeviceSupport {
builder.write(ctrlCharacteristic, msg);
// send body
bytes = header.toString().getBytes("EUC-JP");
bytes = header.getBytes("EUC-JP");
length = min(bytes.length, 18);
msg = new byte[length + 2];
msg[0] = No1F1Constants.CMD_NOTIFICATION;

View File

@ -136,10 +136,10 @@ public class GBWebClient extends WebViewClient {
headers.put("Access-Control-Allow-Origin", "*");
return new WebResourceResponse("text/html", "utf-8", 200, "OK",
headers,
new ByteArrayInputStream("1".toString().getBytes())
new ByteArrayInputStream("1".getBytes())
);
} else {
return new WebResourceResponse("text/html", "utf-8", new ByteArrayInputStream("1".toString().getBytes()));
return new WebResourceResponse("text/html", "utf-8", new ByteArrayInputStream("1".getBytes()));
}
}