Small improvements

This commit is contained in:
M66B 2022-12-30 12:35:11 +01:00
parent 877e0b7aa3
commit 771a71052f
2 changed files with 5 additions and 4 deletions

View File

@ -29,7 +29,7 @@ public class Send {
static final String DEFAULT_SERVER = "";
public static String upload(InputStream is, DocumentFile dfile, int dLimit, int timeLimit, String host, IProgress intf) {
return null;
throw new NotImplementedException("Send");
}
public interface IProgress {

View File

@ -32,18 +32,19 @@ public class VirusTotal {
static final String URI_PRIVACY = "";
static String getUrl(File file) {
return null;
throw new NotImplementedException("VirusTotal");
}
static Bundle lookup(Context context, File file, String apiKey) {
return null;
throw new NotImplementedException("VirusTotal");
}
static String upload(Context context, File file, String apiKey) {
return null;
throw new NotImplementedException("VirusTotal");
}
static void waitForAnalysis(Context context, String id, String apiKey) {
throw new NotImplementedException("VirusTotal");
}
public static class ScanResult implements Parcelable {