mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +00:00
Impl実装WIP
This commit is contained in:
parent
779a07ff26
commit
922168c86b
|
@ -1,4 +1,17 @@
|
||||||
package one.nem.lacerta.utils.impl;
|
package one.nem.lacerta.utils.impl;
|
||||||
|
|
||||||
public class SharedPrefUtilsImpl {
|
import android.content.SharedPreferences;
|
||||||
|
|
||||||
|
import one.nem.lacerta.utils.repository.SharedPrefUtils;
|
||||||
|
|
||||||
|
public class SharedPrefUtilsImpl implements SharedPrefUtils{
|
||||||
|
@Override
|
||||||
|
public SharedPreferences.Editor getEditor() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public SharedPreferences.Editor getEditor(String name) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user