Author: kono
Date: 2011-08-01 15:30:54 -0700 (Mon, 01 Aug 2011)
New Revision: 26349
Modified:
core3/work-api/trunk/src/main/java/org/cytoscape/work/undo/AbstractUndoableEdit.java
Log:
refs #314 Unnecessary imports had been removed.
Modified:
core3/work-api/trunk/src/main/java/org/cytoscape/work/undo/AbstractUndoableEdit.java
===================================================================
---
core3/work-api/trunk/src/main/java/org/cytoscape/work/undo/AbstractUndoableEdit.java
2011-08-01 22:23:49 UTC (rev 26348)
+++
core3/work-api/trunk/src/main/java/org/cytoscape/work/undo/AbstractUndoableEdit.java
2011-08-01 22:30:54 UTC (rev 26349)
@@ -30,19 +30,18 @@
package org.cytoscape.work.undo;
-import javax.swing.undo.CannotUndoException;
-import javax.swing.undo.CannotRedoException;
-
-
/**
* A small convenience class that can be used to create new undo/redo edits.
All
* you should have to do is implement the undo() and redo() methods. The
* benefit is that you don't need to worry about setting up names.
*/
public abstract class AbstractUndoableEdit extends
javax.swing.undo.AbstractUndoableEdit {
+
+ private static final long serialVersionUID = -8072738992232559637L;
+
private final String presentationName;
- /** Initialises an UndoableEdit.
+ /** Initializes an UndoableEdit.
*
* @param presentationName the name that will represent the undoable
action
*/
--
You received this message because you are subscribed to the Google Groups
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/cytoscape-cvs?hl=en.