Skip to content

Commit ecd6bea

Browse files
author
Julian Kast
committed
Remove unused Imports in SdlArtwork and add implement Cloneable in SdlFile
1 parent 1f005dd commit ecd6bea

4 files changed

Lines changed: 2 additions & 4 deletions

File tree

android/sdl_android/src/main/java/com/smartdevicelink/managers/file/filetypes/SdlArtwork.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
import com.smartdevicelink.proxy.rpc.enums.FileType;
4141
import com.smartdevicelink.proxy.rpc.enums.ImageType;
4242
import com.smartdevicelink.proxy.rpc.enums.StaticIconName;
43-
import com.smartdevicelink.util.DebugTool;
4443

4544
/**
4645
* A class that extends SdlFile, representing artwork (JPEG, PNG, or BMP) to be uploaded to core

android/sdl_android/src/main/java/com/smartdevicelink/managers/file/filetypes/SdlFile.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
/**
4848
* A class representing data to be uploaded to core
4949
*/
50-
public class SdlFile {
50+
public class SdlFile implements Cloneable {
5151
private String fileName;
5252
private int id = -1;
5353
private Uri uri;

javaSE/javaSE/src/main/java/com/smartdevicelink/managers/file/filetypes/SdlArtwork.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
import com.smartdevicelink.proxy.rpc.enums.FileType;
3838
import com.smartdevicelink.proxy.rpc.enums.ImageType;
3939
import com.smartdevicelink.proxy.rpc.enums.StaticIconName;
40-
import com.smartdevicelink.util.DebugTool;
4140

4241
import java.net.URI;
4342

javaSE/javaSE/src/main/java/com/smartdevicelink/managers/file/filetypes/SdlFile.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
/**
4646
* A class representing data to be uploaded to core
4747
*/
48-
public class SdlFile {
48+
public class SdlFile implements Cloneable {
4949
private String fileName;
5050
private String filePath;
5151
private URI uri;

0 commit comments

Comments
 (0)