Skip to content
Snippets Groups Projects
Commit babcd633 authored by cyberta's avatar cyberta
Browse files

add javadoc to BitmaskCoreProvider

parent 1e87ec7a
Branches
No related tags found
1 merge request!311APIv5
Pipeline #254293 passed with warnings
......@@ -6,6 +6,12 @@ import mobilemodels.BitmaskMobileCore;
public class BitmaskCoreProvider {
private static BitmaskMobileCore customMobileCore;
/**
* Returns an empty BitmaskMobile instance, which can be currently only used to access
* bitmask-core's persistence layer API
* @return BitmaskMobileCore interface
*/
public static BitmaskMobileCore getBitmaskMobile() {
if (customMobileCore == null) {
return new BitmaskMobile(new PreferenceHelper.SharedPreferenceStore());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment