summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBilal Alsharifi <bilal.alsharifi@gmail.com>2018-10-29 15:56:35 -0400
committerBilal Alsharifi <bilal.alsharifi@gmail.com>2018-10-29 15:56:35 -0400
commitd0493add2da3e51e9b4bca8e7d0bfa205122d265 (patch)
tree8ab06fb50296074c4ac8c5f833b05670558fac49
parentd581498368e39a4027225a824fe76f5317a690df (diff)
downloadsdl_android-feature/add_is_template.tar.gz
Use primitive boolean for isTemplatefeature/add_is_template
-rw-r--r--sdl_android/src/main/java/com/smartdevicelink/managers/file/filetypes/SdlArtwork.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/sdl_android/src/main/java/com/smartdevicelink/managers/file/filetypes/SdlArtwork.java b/sdl_android/src/main/java/com/smartdevicelink/managers/file/filetypes/SdlArtwork.java
index c2615aba2..8099fad1e 100644
--- a/sdl_android/src/main/java/com/smartdevicelink/managers/file/filetypes/SdlArtwork.java
+++ b/sdl_android/src/main/java/com/smartdevicelink/managers/file/filetypes/SdlArtwork.java
@@ -29,7 +29,7 @@ public class SdlArtwork extends SdlFile {
* Set whether this SdlArtwork is a template image whose coloring should be decided by the HMI
* @param isTemplate boolean that tells whether this SdlArtwork is a template image
*/
- public void setIsTemplate(@NonNull Boolean isTemplate){
+ public void setIsTemplate(boolean isTemplate){
this.isTemplate = isTemplate;
}
@@ -37,7 +37,7 @@ public class SdlArtwork extends SdlFile {
* Get whether this SdlArtwork is a template image whose coloring should be decided by the HMI
* @return boolean that tells whether this SdlArtwork is a template image
*/
- public Boolean getIsTemplate(){
+ public boolean getIsTemplate(){
return isTemplate;
}