mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8241727: Typos: empty lines in javadoc, inconsistent indents, etc. (core-libs only)
Reviewed-by: prappo
This commit is contained in:
parent
7f8d785086
commit
b0e1ee4b3b
70 changed files with 435 additions and 446 deletions
|
@ -295,7 +295,7 @@ public class BitSet implements Cloneable, java.io.Serializable {
|
|||
* @return a byte array containing a little-endian representation
|
||||
* of all the bits in this bit set
|
||||
* @since 1.7
|
||||
*/
|
||||
*/
|
||||
public byte[] toByteArray() {
|
||||
int n = wordsInUse;
|
||||
if (n == 0)
|
||||
|
@ -324,7 +324,7 @@ public class BitSet implements Cloneable, java.io.Serializable {
|
|||
* @return a long array containing a little-endian representation
|
||||
* of all the bits in this bit set
|
||||
* @since 1.7
|
||||
*/
|
||||
*/
|
||||
public long[] toLongArray() {
|
||||
return Arrays.copyOf(words, wordsInUse);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue