summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Grover <joeygrover@gmail.com>2019-10-01 13:33:27 -0400
committerJoey Grover <joeygrover@gmail.com>2019-10-01 13:33:27 -0400
commit31de199f22e8be3c74c2bc867091da6be510993d (patch)
treeab6fc24d18de8dc8f7a96b9991b6798a47f45c64
parentade0b9cd8fda5c7494872f3093f193cb95accafe (diff)
downloadsdl_android-31de199f22e8be3c74c2bc867091da6be510993d.tar.gz
Remove suppressLint annotation in FileUtlfeature/fix_code_analyzer_issues
-rw-r--r--base/src/main/java/com/smartdevicelink/util/FileUtls.java2
1 files changed, 0 insertions, 2 deletions
diff --git a/base/src/main/java/com/smartdevicelink/util/FileUtls.java b/base/src/main/java/com/smartdevicelink/util/FileUtls.java
index 762227f21..5f317340b 100644
--- a/base/src/main/java/com/smartdevicelink/util/FileUtls.java
+++ b/base/src/main/java/com/smartdevicelink/util/FileUtls.java
@@ -31,7 +31,6 @@
*/
package com.smartdevicelink.util;
-import android.annotation.SuppressLint;
import android.support.annotation.NonNull;
import java.io.ByteArrayOutputStream;
@@ -60,7 +59,6 @@ public class FileUtls {
* @param fileName the name of the file
* @return a byte array representation of the file if one exists
*/
- @SuppressLint("NewApi")
public static byte[] getFileData(String filePath, String fileName){
if(filePath != null && filePath.length() > 0) {
File file;