Sha256: 65aae534a7a925c18c0568fe933b1aef71d53d43337f1712f193f806c80a21bb
Contents?: true
Size: 516 Bytes
Versions: 119
Compression:
Stored size: 516 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.FastList; public class LinkedList extends FastList { public LinkedList() { super(); } public LinkedList(int capacity) { super(capacity); } }
Version data entries
119 entries across 119 versions & 1 rubygems