@@ -232,9 +232,9 @@ public final MappedByteBuffer force() {
232
232
if (fd == null ) {
233
233
return this ;
234
234
}
235
- int limit = limit ();
236
- if (isSync || ((address != 0 ) && (limit != 0 ))) {
237
- return force (0 , limit );
235
+ int capacity = capacity ();
236
+ if (isSync || ((address != 0 ) && (capacity != 0 ))) {
237
+ return force (0 , capacity );
238
238
}
239
239
return this ;
240
240
}
@@ -267,11 +267,11 @@ public final MappedByteBuffer force() {
267
267
* @param index
268
268
* The index of the first byte in the buffer region that is
269
269
* to be written back to storage; must be non-negative
270
- * and less than limit()
270
+ * and less than {@code capacity()}
271
271
*
272
272
* @param length
273
273
* The length of the region in bytes; must be non-negative
274
- * and no larger than limit () - index
274
+ * and no larger than {@code capacity () - index}
275
275
*
276
276
* @throws IndexOutOfBoundsException
277
277
* if the preconditions on the index and length do not
@@ -289,10 +289,10 @@ public final MappedByteBuffer force(int index, int length) {
289
289
if (fd == null ) {
290
290
return this ;
291
291
}
292
- int limit = limit ();
293
- if ((address != 0 ) && (limit != 0 )) {
292
+ int capacity = capacity ();
293
+ if ((address != 0 ) && (capacity != 0 )) {
294
294
// check inputs
295
- Objects .checkFromIndexSize (index , length , limit );
295
+ Objects .checkFromIndexSize (index , length , capacity );
296
296
SCOPED_MEMORY_ACCESS .force (scope (), fd , address , isSync , index , length );
297
297
}
298
298
return this ;
0 commit comments