1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-07-17 02:44:04 +02:00

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
commit 4a07c63381
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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()));
}
}