@@ -126,7 +126,7 @@ public boolean isEmpty(@GuardSatisfied AbstractMap<K, V> this) {
126126     * @throws NullPointerException {@inheritDoc} 
127127     */ 
128128    @ Pure 
129-     public  boolean  containsValue (@ GuardSatisfied  AbstractMap <K , V > this , @ GuardSatisfied  @ Nullable   Object  value ) {
129+     public  boolean  containsValue (@ GuardSatisfied  AbstractMap <K , V > this , @ GuardSatisfied  Object  value ) {
130130        Iterator <Entry <K ,V >> i  = entrySet ().iterator ();
131131        if  (value ==null ) {
132132            while  (i .hasNext ()) {
@@ -160,7 +160,7 @@ public boolean containsValue(@GuardSatisfied AbstractMap<K, V> this, @GuardSatis
160160     */ 
161161    @ EnsuresKeyForIf (expression ={"#1" }, result =true , map ={"this" })
162162    @ Pure 
163-     public  boolean  containsKey (@ GuardSatisfied  AbstractMap <K , V > this , @ GuardSatisfied  @ Nullable   Object  key ) {
163+     public  boolean  containsKey (@ GuardSatisfied  AbstractMap <K , V > this , @ GuardSatisfied  Object  key ) {
164164        Iterator <Map .Entry <K ,V >> i  = entrySet ().iterator ();
165165        if  (key ==null ) {
166166            while  (i .hasNext ()) {
@@ -193,7 +193,7 @@ public boolean containsKey(@GuardSatisfied AbstractMap<K, V> this, @GuardSatisfi
193193     * @throws NullPointerException          {@inheritDoc} 
194194     */ 
195195    @ Pure 
196-     public  @ Nullable  V  get (@ GuardSatisfied  AbstractMap <K , V > this , @ GuardSatisfied  @ Nullable   Object  key ) {
196+     public  @ Nullable  V  get (@ GuardSatisfied  AbstractMap <K , V > this , @ GuardSatisfied  Object  key ) {
197197        Iterator <Entry <K ,V >> i  = entrySet ().iterator ();
198198        if  (key ==null ) {
199199            while  (i .hasNext ()) {
@@ -254,7 +254,7 @@ public boolean containsKey(@GuardSatisfied AbstractMap<K, V> this, @GuardSatisfi
254254     * @throws ClassCastException            {@inheritDoc} 
255255     * @throws NullPointerException          {@inheritDoc} 
256256     */ 
257-     public  @ Nullable  V  remove (@ GuardSatisfied  AbstractMap <K , V > this , @ Nullable   Object  key ) {
257+     public  @ Nullable  V  remove (@ GuardSatisfied  AbstractMap <K , V > this , Object  key ) {
258258        Iterator <Entry <K ,V >> i  = entrySet ().iterator ();
259259        Entry <K ,V > correctEntry  = null ;
260260        if  (key ==null ) {
0 commit comments