utils: WIP Implクラスに全部Implementした

This commit is contained in:
r-ca 2023-12-14 03:15:44 +09:00
parent 62247033e9
commit 6f3639702a
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -1,4 +1,28 @@
package one.nem.lacerta.utils.impl;
public class DeviceInfoUtilsImpl {
import java.nio.file.Path;
import one.nem.lacerta.utils.repository.DeviceInfoUtils;
public class DeviceInfoUtilsImpl implements DeviceInfoUtils {
@Override
public Path getExternalStorageDirectory() {
return null;
}
@Override
public Path getExternalStorageDirectory(String type) {
return null;
}
@Override
public boolean hasPermission(String permission) {
return false;
}
@Override
public boolean hasPermissions(String[] permissions) {
return false;
}
}