File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
objectbox-java/src/main/java/io/objectbox Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff 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." );
You can’t perform that action at this time.
0 commit comments