Suppress lint warning: NewApi.

This commit is contained in:
akwizgran
2014-05-01 14:18:21 +01:00
parent ff059ef72e
commit d5bf5871a9

View File

@@ -2,14 +2,14 @@ package org.briarproject.system;
import java.io.File;
import java.io.IOException;
import org.briarproject.api.system.FileUtils;
import android.annotation.SuppressLint;
import android.os.Build;
import android.os.StatFs;
class AndroidFileUtils implements FileUtils {
@SuppressLint("NewApi")
@SuppressWarnings("deprecation")
public long getTotalSpace(File f) throws IOException {
if(Build.VERSION.SDK_INT >= 9) return f.getTotalSpace();
@@ -18,6 +18,7 @@ class AndroidFileUtils implements FileUtils {
return (long) s.getBlockCount() * s.getBlockSize();
}
@SuppressLint("NewApi")
@SuppressWarnings("deprecation")
public long getFreeSpace(File f) throws IOException {
if(Build.VERSION.SDK_INT >= 9) return f.getUsableSpace();