svn commit: r13840 - trunk/src_new/org/argouml/cognitive/ToDoListEvent.java
| Newsgroups | gmane.comp.lang.uml.argouml.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: tfmorris
Date: 2007-11-25 10:20:27-0800
New Revision: 13840
Modified:
trunk/src_new/org/argouml/cognitive/ToDoListEvent.java
Log:
List constructor is backward compatible with Vector. Don't need both.
Modified: trunk/src_new/org/argouml/cognitive/ToDoListEvent.java
Url: http://argouml.tigris.org/source/browse/argouml/trunk/src_new/org/argouml/cognitive/ToDoListEvent.java?view=diff&rev=13840&p1=trunk/src_new/org/argouml/cognitive/ToDoListEvent.java&p2=trunk/src_new/org/argouml/cognitive/ToDoListEvent.java&r1=13839&r2=13840
==============================================================================
--- trunk/src_new/org/argouml/cognitive/ToDoListEvent.java (original)
+++ trunk/src_new/org/argouml/cognitive/ToDoListEvent.java 2007-11-25 10:20:27-0800
@@ -43,20 +43,11 @@
public ToDoListEvent() {
items = null;
}
-
- /**
- * The constructor.
- *
- * @param i the Vector of ToDoItems that were changed/added/removed
- */
- public ToDoListEvent(Vector<ToDoItem> i) {
- items = i;
- }
/**
* The constructor.
*
- * @param i the Vector of ToDoItems that were changed/added/removed
+ * @param i the List of ToDoItems that were changed/added/removed
*/
public ToDoListEvent(List<ToDoItem> i) {
items = i;