summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBilal Alsharifi <bilal.alsharifi@gmail.com>2020-08-12 14:49:15 -0400
committerBilal Alsharifi <bilal.alsharifi@gmail.com>2020-08-12 14:49:15 -0400
commita95de91bab2720403ae46af426601e13afc025bf (patch)
tree17bfaacbdb1fbecd13f213f3b8c6299f82d38dcd
parent4fb3a9200073be45ebe93f93e77ff00c6a76a876 (diff)
downloadsdl_android-a95de91bab2720403ae46af426601e13afc025bf.tar.gz
Update SubtleAlertResponse to the latest proposal revisions
-rw-r--r--base/src/main/java/com/smartdevicelink/proxy/rpc/SubtleAlertResponse.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/base/src/main/java/com/smartdevicelink/proxy/rpc/SubtleAlertResponse.java b/base/src/main/java/com/smartdevicelink/proxy/rpc/SubtleAlertResponse.java
index c0999e4a5..a15dbe13b 100644
--- a/base/src/main/java/com/smartdevicelink/proxy/rpc/SubtleAlertResponse.java
+++ b/base/src/main/java/com/smartdevicelink/proxy/rpc/SubtleAlertResponse.java
@@ -31,7 +31,7 @@
*/
package com.smartdevicelink.proxy.rpc;
-import android.support.annotation.NonNull;
+import androidx.annotation.NonNull;
import com.smartdevicelink.protocol.enums.FunctionID;
import com.smartdevicelink.proxy.RPCResponse;
@@ -76,8 +76,8 @@ public class SubtleAlertResponse extends RPCResponse {
/**
* Sets the tryAgainTime.
*
- * @param tryAgainTime Amount of time (in milliseconds) that an app must wait before resending an alert. If
- * provided, another system event or overlay currently has a higher priority than this alert.
+ * @param tryAgainTime Amount of time (in milliseconds) that an app must wait before resending an alert.
+ * If provided, another system event or overlay currently has a higher priority than this alert.
* An app must not send an alert without waiting at least the amount of time dictated.
*/
public void setTryAgainTime(Integer tryAgainTime) {
@@ -87,8 +87,8 @@ public class SubtleAlertResponse extends RPCResponse {
/**
* Gets the tryAgainTime.
*
- * @return Integer Amount of time (in milliseconds) that an app must wait before resending an alert. If
- * provided, another system event or overlay currently has a higher priority than this alert.
+ * @return Integer Amount of time (in milliseconds) that an app must wait before resending an alert.
+ * If provided, another system event or overlay currently has a higher priority than this alert.
* An app must not send an alert without waiting at least the amount of time dictated.
*/
public Integer getTryAgainTime() {