summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBilal Alsharifi <bilal.alsharifi@gmail.com>2020-10-26 10:39:42 -0400
committerBilal Alsharifi <bilal.alsharifi@gmail.com>2020-10-26 10:39:42 -0400
commit9dc7569bcec6cca5102bcde11d147f1eecc6bba5 (patch)
tree80a0a0efe735dfe0bb825b71d76f60c015018e0b
parent7fb702f6f5292ed3ad3f5cbeaf9d0073859f91c5 (diff)
downloadsdl_android-9dc7569bcec6cca5102bcde11d147f1eecc6bba5.tar.gz
Add Use @link to deprecated apis in PutFilebugfix/issue_1536
-rw-r--r--base/src/main/java/com/smartdevicelink/proxy/rpc/PutFile.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/src/main/java/com/smartdevicelink/proxy/rpc/PutFile.java b/base/src/main/java/com/smartdevicelink/proxy/rpc/PutFile.java
index 638fb6273..0c37d25ea 100644
--- a/base/src/main/java/com/smartdevicelink/proxy/rpc/PutFile.java
+++ b/base/src/main/java/com/smartdevicelink/proxy/rpc/PutFile.java
@@ -268,7 +268,7 @@ public class PutFile extends RPCRequest {
/**
* @param offset Optional offset in bytes for resuming partial data chunks
- * @deprecated as of SmartDeviceLink 4.0
+ * @deprecated as of SmartDeviceLink 4.0. Use {@link #setOffset(Long)} instead.
*/
public PutFile setOffset(Integer offset) {
if (offset == null) {
@@ -305,7 +305,7 @@ public class PutFile extends RPCRequest {
/**
* @param length Optional length in bytes for resuming partial data chunks. If offset is set to 0, then length is
* the total length of the file to be downloaded
- * @deprecated as of SmartDeviceLink 4.0
+ * @deprecated as of SmartDeviceLink 4.0. Use {@link #setLength(Long)} instead.
*/
public PutFile setLength(Integer length) {
if (length == null) {