File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
objectbox-java/src/main/java/io/objectbox Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 5959@ ThreadSafe
6060public class BoxStore implements Closeable {
6161
62- private static final String VERSION = "2.0.0-2018-07-16 " ;
62+ private static final String VERSION = "2.0.0-2018-07-19 " ;
6363 private static BoxStore defaultStore ;
6464
6565 /** Currently used DB dirs with values from {@link #getCanonicalPath(File)}. */
@@ -98,8 +98,14 @@ public static synchronized boolean clearDefaultStore() {
9898 return existedBefore ;
9999 }
100100
101+ /** Gets the Version of ObjectBox Java. */
102+ public static String getVersion () {
103+ return VERSION ;
104+ }
105+
101106 static native String nativeGetVersion ();
102107
108+ /** Gets the Version of ObjectBox Core. */
103109 public static String getVersionNative () {
104110 NativeLibraryLoader .ensureLoaded ();
105111 return nativeGetVersion ();
@@ -145,10 +151,6 @@ public static boolean isObjectBrowserAvailable() {
145151 return nativeIsObjectBrowserAvailable ();
146152 }
147153
148- public static String getVersion () {
149- return VERSION ;
150- }
151-
152154 native long nativePanicModeRemoveAllObjects (long store , int entityId );
153155
154156 private final File directory ;
You can’t perform that action at this time.
0 commit comments