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

Ticket #626: MapCollection.patch

File MapCollection.patch, 0.8 kB (added by Some1_2, 1 year ago)
  • MapCollectionEnhanced.d

    old new  
    1414 
    1515********************************************************************************/ 
    1616 
    17 module tango.util.collection.impl.MapCollection
     17module tango.util.collection.impl.MapCollectionEnhanced
    1818 
    1919private import  tango.core.Exception; 
    2020 
     
    8585 
    8686        protected final bool isValidKey(K key) 
    8787        { 
     88            /* 
    8889                static if (is (K : Object)) 
    8990                          { 
    9091                          if (key is null) 
    9192                              return false; 
    92                           } 
     93                          }*/ 
    9394                return true; 
    9495        } 
    9596