summaryrefslogtreecommitdiff
path: root/javax/swing/text/EditorKit.java
diff options
context:
space:
mode:
authorAndrew John Hughes <gnu_andrew@member.fsf.org>2005-01-15 17:01:35 +0000
committerAndrew John Hughes <gnu_andrew@member.fsf.org>2005-01-15 17:01:35 +0000
commit18addaa71c45fbdb60627f349e52027b3281e879 (patch)
treec9766b547b613c519a66d84ad2826876fb07d1b1 /javax/swing/text/EditorKit.java
parentc61f399b1d3c471a8e459a4a2be645f95560f088 (diff)
downloadclasspath-18addaa71c45fbdb60627f349e52027b3281e879.tar.gz
2005-01-15 Andrew John Hughes <gnu_andrew@member.fsf.org>
* Merge of October 2004 HEAD patches to generics branch
Diffstat (limited to 'javax/swing/text/EditorKit.java')
-rw-r--r--javax/swing/text/EditorKit.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/javax/swing/text/EditorKit.java b/javax/swing/text/EditorKit.java
index 3a09ee330..5d89a11ba 100644
--- a/javax/swing/text/EditorKit.java
+++ b/javax/swing/text/EditorKit.java
@@ -35,18 +35,19 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
+
package javax.swing.text;
-import java.io.InputStream;
import java.io.IOException;
+import java.io.InputStream;
import java.io.OutputStream;
import java.io.Reader;
import java.io.Serializable;
import java.io.Writer;
+
import javax.swing.Action;
import javax.swing.JEditorPane;
-
public abstract class EditorKit
implements Cloneable, Serializable
{