Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Ticket #584: MapCollection-checkKey.patch

File MapCollection-checkKey.patch, 427 bytes (added by Nietsnie, 1 year ago)
  • MapCollection.d

    old new  
    101101 
    102102        protected final void checkKey(K key) 
    103103        { 
    104                 if (!allowsKey(key)) 
     104                if (!isValidKey(key)) 
    105105                   { 
    106106                   throw new IllegalElementException("Attempt to include invalid key _in Collection"); 
    107107                   }