view base/src/java/util/LinkedHashMap.d @ 75:0b015f5925d8

Fix HashMap.remove, thank to yidabu for the testcase.
author Frank Benoit <benoit@tionex.de>
date Sat, 11 Apr 2009 11:32:49 +0200
parents a7064d39311b
children
line wrap: on
line source

module java.util.LinkedHashMap;

import java.lang.all;
import java.util.HashMap;

class LinkedHashMap : HashMap {
    this(){
        implMissing( __FILE__, __LINE__ );
    }
}