This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 57197 - Poorly performing DriverListUtil
Summary: Poorly performing DriverListUtil
Status: RESOLVED FIXED
Alias: None
Product: db
Classification: Unclassified
Component: Code (show other bugs)
Version: 4.x
Hardware: All All
: P4 blocker (vote)
Assignee: Jiri Rechtacek
URL:
Keywords: PERFORMANCE
Depends on:
Blocks:
 
Reported: 2005-03-30 13:53 UTC by _ rkubacki
Modified: 2013-01-13 17:56 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description _ rkubacki 2005-03-30 13:53:01 UTC
Keeping urls/drivers and names in LinkedList and iterating through these with
List.get(int) is a bad idea. LinkedList is not optimized for this access.
Comment 1 Petr Blaha 2006-03-13 13:32:11 UTC
TM 5.0 -> TBD
Comment 2 Jiri Rechtacek 2009-07-01 07:57:12 UTC
Reassigned to new owner.
Comment 3 matthias42 2013-01-13 17:56:51 UTC
This was fixed while bug #125963 was fixed. In the relevant changesets the access was switched from indexed based access to using an iterator (for each constructs).