|
From: SourceForge.net <no...@so...> - 2012-08-01 03:24:49
|
Bugs item #3484640, was opened at 2012-02-05 06:09 Message generated for change (Comment added) made by robeden You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=424682&aid=3484640&group_id=39235 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Correctness Group: Next Minor Release >Status: Closed >Resolution: Works For Me Priority: 7 Private: No Submitted By: Nobody/Anonymous (nobody) Assigned to: Rob Eden (robeden) Summary: T#E#LinkedList NullPointerExecption when inserting(0, item) Initial Comment: When performing 'insert(0, item)' on an empty T#E#LinkedList, a NullPointerException is thrown. ---------------------------------------------------------------------- >Comment By: Rob Eden (robeden) Date: 2012-07-31 20:24 Message: Unable to replicate with the following unit test: protected TLinkedList<Data> list; public void setUp() throws Exception { list = new TLinkedList<Data>(); } public void testInsert_bug3484640() { list.insert( 0, new Data( 0 ) ); } ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=424682&aid=3484640&group_id=39235 |