Skip to content

Commit 589ff93

Browse files
Merge pull request #1740 from smartdevicelink/bugfix/issue_1739
Fix description for `SeatControlCapabilities` and `RadioControlCapabilities`
2 parents 47988f3 + 61c9292 commit 589ff93

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

base/src/main/java/com/smartdevicelink/proxy/rpc/AudioControlCapabilities.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public AudioControlCapabilities(Hashtable<String, Object> hash) {
6464
/**
6565
* Constructs a newly allocated AudioControlCapabilities object
6666
*
67-
* @param moduleName short friendly name of the light control module.
67+
* @param moduleName short friendly name of the audio control module.
6868
*/
6969
public AudioControlCapabilities(@NonNull String moduleName) {
7070
this();
@@ -74,7 +74,7 @@ public AudioControlCapabilities(@NonNull String moduleName) {
7474
/**
7575
* Sets the moduleName portion of the AudioControlCapabilities class
7676
*
77-
* @param moduleName The short friendly name of the light control module. It should not be used to identify a module by mobile application.
77+
* @param moduleName The short friendly name of the audio control module. It should not be used to identify a module by mobile application.
7878
*/
7979
public AudioControlCapabilities setModuleName(@NonNull String moduleName) {
8080
setValue(KEY_MODULE_NAME, moduleName);
@@ -84,7 +84,7 @@ public AudioControlCapabilities setModuleName(@NonNull String moduleName) {
8484
/**
8585
* Gets the moduleName portion of the AudioControlCapabilities class
8686
*
87-
* @return String - The short friendly name of the light control module. It should not be used to identify a module by mobile application.
87+
* @return String - The short friendly name of the audio control module. It should not be used to identify a module by mobile application.
8888
*/
8989
public String getModuleName() {
9090
return getString(KEY_MODULE_NAME);

base/src/main/java/com/smartdevicelink/proxy/rpc/RadioControlCapabilities.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public RadioControlCapabilities(Hashtable<String, Object> hash) {
6868
/**
6969
* Constructs a new RadioControlCapabilities object
7070
*
71-
* @param moduleName The short friendly name of the climate control module.
71+
* @param moduleName The short friendly name of the radio control module.
7272
* It should not be used to identify a module by mobile application.
7373
*/
7474
public RadioControlCapabilities(@NonNull String moduleName) {
@@ -79,7 +79,7 @@ public RadioControlCapabilities(@NonNull String moduleName) {
7979
/**
8080
* Sets the moduleName portion of the RadioControlCapabilities class
8181
*
82-
* @param moduleName The short friendly name of the climate control module.
82+
* @param moduleName The short friendly name of the radio control module.
8383
* It should not be used to identify a module by mobile application.
8484
*/
8585
public RadioControlCapabilities setModuleName(@NonNull String moduleName) {
@@ -90,7 +90,7 @@ public RadioControlCapabilities setModuleName(@NonNull String moduleName) {
9090
/**
9191
* Gets the moduleName portion of the RadioControlCapabilities class
9292
*
93-
* @return String - Short friendly name of the climate control module.
93+
* @return String - Short friendly name of the radio control module.
9494
*/
9595
public String getModuleName() {
9696
return getString(KEY_MODULE_NAME);

base/src/main/java/com/smartdevicelink/proxy/rpc/SeatControlCapabilities.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public SeatControlCapabilities(Hashtable<String, Object> hash) {
7575
/**
7676
* Constructs a newly allocated SeatControlCapabilities object
7777
*
78-
* @param moduleName short friendly name of the light control module.
78+
* @param moduleName short friendly name of the seat control module.
7979
*/
8080
public SeatControlCapabilities(@NonNull String moduleName) {
8181
this();
@@ -94,7 +94,7 @@ public String getModuleName() {
9494
/**
9595
* Sets the moduleName portion of the SeatControlCapabilities class
9696
*
97-
* @param moduleName - The short friendly name of the light control module. It should not be used to identify a module by mobile application.
97+
* @param moduleName - The short friendly name of the seat control module. It should not be used to identify a module by mobile application.
9898
*/
9999
public SeatControlCapabilities setModuleName(@NonNull String moduleName) {
100100
setValue(KEY_MODULE_NAME, moduleName);

0 commit comments

Comments
 (0)