diff options
-rw-r--r-- | sdl_android/src/main/java/com/smartdevicelink/managers/file/filetypes/SdlArtwork.java | 4 |
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; } |