Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2416,7 +2416,7 @@ private synchronized boolean bluetoothConnect(BluetoothDevice device) {
/**
* Set the connection establishment status of the particular device
*
* @param address address of the device in quesiton
* @param address address of the device in question
* @param hasSDLConnected true if a connection has been established, false if not
*/
protected void setSDLConnectedStatus(String address, boolean hasSDLConnected) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
* <td>endTime</td>
* <td>StartTime</td>
* <td> EndTime can be provided for "COUNTUP" and "COUNTDOWN"; to be used to calculate any visual progress bar (if not provided, this feature is ignored)
* If endTime is greater then startTime for COUNTDOWN or less than startTime for COUNTUP, then the request will return an INVALID_DATA.
* If endTime is greater than startTime for COUNTDOWN or less than startTime for COUNTUP, then the request will return an INVALID_DATA.
* endTime will be ignored for "RESUME", and "CLEAR"
* endTime can be sent for "PAUSE", in which case it will update the paused endTime</td>
* <td>N</td>
Expand Down
2 changes: 1 addition & 1 deletion base/src/main/java/com/smartdevicelink/proxy/rpc/Show.java
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ public List<SoftButton> getSoftButtons() {
}

/**
* Sets the the Soft buttons defined by the App
* Sets the Soft buttons defined by the App
*
* @param softButtons a List value representing the Soft buttons defined by the
* App
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
import java.util.Hashtable;

/**
* Struct that indicates the a SystemCapabilityType and houses different structs to describe particular capabilities
* Struct that indicates the SystemCapabilityType and houses different structs to describe particular capabilities
*/

public class SystemCapability extends RPCStruct {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public static short shortFromByteArray(byte[] sizeBuf, int offset) {
* Converts the byte array into a string of hex values.
*
* @param bytes byte array that will be converted to hex
* @param end EXCLUSIVE so if it it receives 10 it will print 0-9
* @param end EXCLUSIVE so if it receives 10 it will print 0-9
* @return the String containing converted hex values or null if byte array is null
*/
public static String bytesToHex(byte[] bytes, int end) {
Expand Down