8282657: Code cleanup: removing double semicolons at the end of lines

Reviewed-by: lancea, rriggs, ihse, prr, iris, wetmore, darcy, dholmes
This commit is contained in:
Matteo Baccan 2022-03-07 21:33:40 +00:00 committed by Magnus Ihse Bursie
parent 5d5bf16b0a
commit ccad39237a
82 changed files with 93 additions and 93 deletions

View file

@ -2012,7 +2012,7 @@ public class File
int prefixLength = prefix.length();
int nusLength = nus.length();
int suffixLength = suffix.length();;
int suffixLength = suffix.length();
String name;
int nameMax = fs.getNameMax(dir.getPath());

View file

@ -1040,7 +1040,7 @@ public class WeakHashMap<K,V>
Objects.requireNonNull(function);
int expectedModCount = modCount;
Entry<K, V>[] tab = getTable();;
Entry<K, V>[] tab = getTable();
for (Entry<K, V> entry : tab) {
while (entry != null) {
Object key = entry.get();