(Object data)
| 111 | /// - `data`: @param data either the name of the application e.g. on CDC platforms or |
| 112 | /// a context object on other platforms |
| 113 | private static synchronized void init(Object data) { |
| 114 | if (Util.getImplementation() != null) { |
| 115 | Util.getImplementation().setStorageData(data); |
| 116 | } |
| 117 | if (INSTANCE == null) { |
| 118 | INSTANCE = new Storage(); |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | /// Returns true if the storage is initialized |
| 123 | /// |
no test coverage detected