Sha256: 35a0d4bfe0b70e9c01c9b8f59e906ccb63ca0ea2ff40eb4c4db150fc11630df8
Contents?: true
Size: 518 Bytes
Versions: 119
Compression:
Stored size: 518 Bytes
Contents
/* * Javolution - Java(TM) Solution for Real-Time and Embedded Systems * Copyright (C) 2005 - Javolution (http://javolution.org/) * All rights reserved. * * Permission to use, copy, modify, and distribute this software is * freely granted, provided that this notice is preserved. */ package j2me.util; import javolution.util.FastMap; public class LinkedHashMap extends FastMap { public LinkedHashMap() { super(); } public LinkedHashMap(int capacity) { super(capacity); } }
Version data entries
119 entries across 119 versions & 1 rubygems