mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 08:23:15 +00:00
utils: WIP Implクラスに全部Implementした
This commit is contained in:
parent
62247033e9
commit
6f3639702a
|
@ -1,4 +1,28 @@
|
||||||
package one.nem.lacerta.utils.impl;
|
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;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user