Skip to content

Commit e31e08c

Browse files
BoxStore: make sysProcMeminfoKb() and sysProcStatusKb() public API.
1 parent b63c8e4 commit e31e08c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

objectbox-java/src/main/java/io/objectbox/BoxStore.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ public static boolean isDatabaseOpen(File directory) throws IOException {
434434
* @return Kb value or 0 on failure
435435
*/
436436
@Experimental
437-
static long sysProcMeminfoKb(String key) {
437+
public static long sysProcMeminfoKb(String key) {
438438
return nativeSysProcMeminfoKb(key);
439439
}
440440

@@ -456,7 +456,7 @@ static long sysProcMeminfoKb(String key) {
456456
* @return Kb value or 0 on failure
457457
*/
458458
@Experimental
459-
static long sysProcStatusKb(String key) {
459+
public static long sysProcStatusKb(String key) {
460460
return nativeSysProcStatusKb(key);
461461
}
462462

0 commit comments

Comments
 (0)