Merge pull request #1194 from elagin/string_toString

Redundant String.toString()
This commit is contained in:
Carsten Pfeiffer
2018-08-08 21:34:45 +02:00
committed by GitHub
2 changed files with 4 additions and 4 deletions
@@ -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;
@@ -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()));
}
}