Skip to content

Commit

Permalink
Merge pull request #1 from patricktorres27/fix-receive-message
Browse files Browse the repository at this point in the history
Fix final keyword in receive message
  • Loading branch information
patricktorres27 authored Sep 4, 2022
2 parents 5674058 + 66af33b commit 4a25242
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ public void run() {
try {
while ((msg = input.readLine()) != null) {
if (deviceCallback != null) {
final String msgCopy = msg;
String msgCopy = msg;
new android.os.Handler(Looper.getMainLooper()).post(() -> deviceCallback.onMessage(msgCopy));
}
}
Expand Down

0 comments on commit 4a25242

Please sign in to comment.