Bug 3750

Summary: frysk.cli.hpd uses Vector, which is old school
Product: frysk Reporter: Andrew Cagney <cagney>
Component: generalAssignee: Stan Cox <scox>
Status: RESOLVED FIXED    
Severity: normal    
Priority: P2    
Version: unspecified   
Target Milestone: ---   
Host: Target:
Build: Last reconfirmed:
Bug Depends on:    
Bug Blocks: 2246, 3729    

Description Andrew Cagney 2006-12-18 15:52:52 UTC
The Vector class, from Java 1.0 was largely replaced by the Collection and its
sub classes, added to Java 1.2.
Comment 1 Stan Cox 2006-12-20 17:24:03 UTC
	* hpd/AllPTSet.java (taskSets): Use ArrayList instead of Vector.
	* hpd/CLI.java (handle): Likewise.
	* hpd/Command.java (myParameters): Likewise.
	* hpd/DynamicPTSet.java (getTasks): Likewise.
	* hpd/ExecPTSet.java (getTasks): Likewise.
	* hpd/Preprocessor.java (preprocess): Likewise.
	* hpd/ProcTasks.java (getTaskData): Likewise.
	* hpd/SetNotationParser.java (parse): Likewise.
	* hpd/StaticPTSet.java (getProcs): Likewise.
	* hpd/StatePTSet.java (getTasks): Likewise.
	* hpd/UserHelp.java (getCmdList): Likewise.
Comment 2 Stan Cox 2006-12-22 16:00:47 UTC
Replaced Vector with ArrayList