Skip to content

Commit cc87dc5

Browse files
Update README.md
1 parent 78aaef6 commit cc87dc5

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4118,20 +4118,22 @@ public class ConcurrentHashMap<K,V> extends AbstractMap<K,V>
41184118
```Syntax
41194119

41204120
abstract static sealed class CollectionView<K,V,E>
4121-
implements Collection<E>, java.io.Serializable permits EntrySetView, KeySetView, ValuesView
4121+
implements Collection<E>, java.io.Serializable
4122+
permits EntrySetView, KeySetView, ValuesView
41224123

41234124
```
41244125
</h3>
41254126

4126-
<h3><i><li> 2. More Over EntrySetView, KeySetView and ValuesView are "Static Final Classes" and are not viable or be imported to any file. Syntax as follows:</li></i><h3>
4127+
<h3><i><li> 2. More Over EntrySetView, KeySetView and ValuesView are "Static Final Classes" of "ConcurrentHashMap" class and are not viable or be imported to any file. Syntax as follows:</li></i><h3>
41274128

41284129
<h3><i><ins>EntrySetView Class</ins></i></h3>
41294130

41304131
<h3 align="Center">
41314132

41324133
```Syntax
41334134

4134-
static final class EntrySetView<K,V> extends CollectionView<K,V,Map.Entry<K,V>>
4135+
static final class EntrySetView<K,V> extends
4136+
CollectionView<K,V,Map.Entry<K,V>>
41354137
implements Set<Map.Entry<K,V>>, java.io.Serializable
41364138

41374139
```

0 commit comments

Comments
 (0)