Skip to content

Commit 32f510e

Browse files
Jean-Baptiste QueruAndroid Code Review
authored andcommitted
Merge "BluetoothHeadset.java: Added ACTION_VENDOR_SPECIFIC_HEADSET_EVENT, EXTRA_VENDOR_SPECIFIC_HEADSET_EVENT_CMD, EXTRA_VENDOR_SPECIFIC_HEADSET_EVENT_ARGS."
2 parents 0b7bd95 + a473394 commit 32f510e

File tree

4 files changed

+576
-16
lines changed

4 files changed

+576
-16
lines changed

core/java/android/bluetooth/AtCommandHandler.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public AtCommandResult handleReadCommand() {
7373
* least one element in this array.
7474
* @return The result of this command.
7575
*/
76-
// Typically used to set this paramter
76+
// Typically used to set this parameter
7777
public AtCommandResult handleSetCommand(Object[] args) {
7878
return new AtCommandResult(AtCommandResult.ERROR);
7979
}
@@ -83,11 +83,12 @@ public AtCommandResult handleSetCommand(Object[] args) {
8383
* Test commands are part of the Extended command syntax, and are typically
8484
* used to request an indication of the range of legal values that "FOO"
8585
* can take.<p>
86-
* By defualt we return an OK result, to indicate that this command is at
86+
* By default we return an OK result, to indicate that this command is at
8787
* least recognized.<p>
8888
* @return The result of this command.
8989
*/
9090
public AtCommandResult handleTestCommand() {
9191
return new AtCommandResult(AtCommandResult.OK);
9292
}
93+
9394
}

0 commit comments

Comments
 (0)