Skip to content

Commit 7e5639c

Browse files
Merge branch 'max-data-size-stable' into 'dev'
maxDataSize is stable See merge request objectbox/objectbox-java!130
2 parents 2b22e25 + 6f71fcb commit 7e5639c

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -386,8 +386,6 @@ public BoxStoreBuilder maxSizeInKByte(long maxSizeInKByte) {
386386
}
387387

388388
/**
389-
* This API is experimental and may change or be removed in future releases.
390-
* <p>
391389
* Sets the maximum size the data stored in the database can grow to.
392390
* When applying a transaction (e.g. putting an object) would exceed it a {@link DbMaxDataSizeExceededException}
393391
* is thrown.
@@ -401,7 +399,6 @@ public BoxStoreBuilder maxSizeInKByte(long maxSizeInKByte) {
401399
* When the data limit is reached, data can be removed to get below the limit again (assuming the database size limit
402400
* is not also reached).
403401
*/
404-
@Experimental
405402
public BoxStoreBuilder maxDataSizeInKByte(long maxDataSizeInKByte) {
406403
if (maxDataSizeInKByte >= maxSizeInKByte) {
407404
throw new IllegalArgumentException("maxDataSizeInKByte must be smaller than maxSizeInKByte.");

0 commit comments

Comments
 (0)