1
1
/*
2
- * Copyright (c) 2000, 2019 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2000, 2020 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -364,8 +364,8 @@ public Buffer limit(int newLimit) {
364
364
if (newLimit > capacity | newLimit < 0 )
365
365
throw createLimitException (newLimit );
366
366
limit = newLimit ;
367
- if (position > limit ) position = limit ;
368
- if (mark > limit ) mark = -1 ;
367
+ if (position > newLimit ) position = newLimit ;
368
+ if (mark > newLimit ) mark = -1 ;
369
369
return this ;
370
370
}
371
371
@@ -689,16 +689,18 @@ public final boolean hasRemaining() {
689
689
* @return The current position value, before it is incremented
690
690
*/
691
691
final int nextGetIndex () { // package-private
692
- if (position >= limit )
692
+ int p = position ;
693
+ if (p >= limit )
693
694
throw new BufferUnderflowException ();
694
- return position ++;
695
+ position = p + 1 ;
696
+ return p ;
695
697
}
696
698
697
699
final int nextGetIndex (int nb ) { // package-private
698
- if (limit - position < nb )
699
- throw new BufferUnderflowException ();
700
700
int p = position ;
701
- position += nb ;
701
+ if (limit - p < nb )
702
+ throw new BufferUnderflowException ();
703
+ position = p + nb ;
702
704
return p ;
703
705
}
704
706
@@ -710,16 +712,18 @@ final int nextGetIndex(int nb) { // package-private
710
712
* @return The current position value, before it is incremented
711
713
*/
712
714
final int nextPutIndex () { // package-private
713
- if (position >= limit )
715
+ int p = position ;
716
+ if (p >= limit )
714
717
throw new BufferOverflowException ();
715
- return position ++;
718
+ position = p + 1 ;
719
+ return p ;
716
720
}
717
721
718
722
final int nextPutIndex (int nb ) { // package-private
719
- if (limit - position < nb )
720
- throw new BufferOverflowException ();
721
723
int p = position ;
722
- position += nb ;
724
+ if (limit - p < nb )
725
+ throw new BufferOverflowException ();
726
+ position = p + nb ;
723
727
return p ;
724
728
}
725
729
0 commit comments