summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Grover <joeygrover@gmail.com>2017-07-25 16:40:27 -0400
committerGitHub <noreply@github.com>2017-07-25 16:40:27 -0400
commitea5288bf96d0bddcb98af73510ae51cabd44e325 (patch)
tree8d1f8cd35abba3f2477575518d9511084a434897
parentb2a9a3ff9bea4ced53b9681b2cdd7bd361c2f1e3 (diff)
parentdd359f4703ba61021f6a319b2f9a7dbab8affaf2 (diff)
downloadsdl_android-ea5288bf96d0bddcb98af73510ae51cabd44e325.tar.gz
Merge pull request #557 from smartdevicelink/bugfix/add_filename_note
add filename max length documentation
-rw-r--r--sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/PutFile.java2
-rw-r--r--sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/SetAppIcon.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/PutFile.java b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/PutFile.java
index 9fa04c154..a0be90fbd 100644
--- a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/PutFile.java
+++ b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/PutFile.java
@@ -143,7 +143,7 @@ public class PutFile extends RPCRequest {
* @param sdlFileName
* a String value representing a file reference name
* <p></p>
- * <b>Notes: </b>Maxlength=500
+ * <b>Notes: </b>Maxlength=500, however the max file name length may vary based on remote filesystem limitations
*/
public void setSdlFileName(String sdlFileName) {
setParameters(KEY_SDL_FILE_NAME, sdlFileName);
diff --git a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/SetAppIcon.java b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/SetAppIcon.java
index 30496f159..2063303d9 100644
--- a/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/SetAppIcon.java
+++ b/sdl_android/src/main/java/com/smartdevicelink/proxy/rpc/SetAppIcon.java
@@ -71,7 +71,7 @@ public class SetAppIcon extends RPCRequest {
* @param sdlFileName
* a String value representing a file reference name
* <p></p>
- * <b>Notes: </b>Maxlength=500
+ * <b>Notes: </b>Maxlength=500, however the max file name length may vary based on remote filesystem limitations
*/
public void setSdlFileName(String sdlFileName) {
setParameters(KEY_SDL_FILE_NAME, sdlFileName);