Skip to content
Snippets Groups Projects
Commit a0b4b589 authored by Geoffrey Métais's avatar Geoffrey Métais
Browse files

Add hasData() in datamap

parent 4c853f71
No related branches found
No related tags found
No related merge requests found
......@@ -177,6 +177,10 @@ public class VLCApplication extends Application {
return sDataMap.remove(key);
}
public static boolean hasData(String key) {
return sDataMap.containsKey(key);
}
public static void clearData() {
sDataMap.clear();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment