In the documentation for MultiHashMap, it claims "Getting a value will
always return a Collection, holding all the values put to that key."
However, the following code fails...

 

final MultiHashMap map = new MultiHashMap();

assertNotNull( map.get( "Hello" ) );

 

>From the documentation, I would think that the get() method should return an
EMPTY (and probably unmodifiable) collection, not a null reference.  Am I
misinterpreting it?

 

Reply via email to