summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Kennke <roman@kennke.org>2005-10-19 15:06:16 +0000
committerRoman Kennke <roman@kennke.org>2005-10-19 15:06:16 +0000
commit43e7e36c8686feb4626a76e94213d2f0cfe0c83f (patch)
treee6483e53b515807dfd62f5bc9133455a5cad76bf
parent9a551423ca662af5e39cfc22282252589e188625 (diff)
downloadclasspath-43e7e36c8686feb4626a76e94213d2f0cfe0c83f.tar.gz
2005-10-19 Roman Kennke <kennke@aicas.com>
* javax/swing/undo/CannotRedoException.java * javax/swing/undo/CannotUndoException.java Put super() call in empty constructors.
-rw-r--r--ChangeLog6
-rw-r--r--javax/swing/undo/CannotRedoException.java4
-rw-r--r--javax/swing/undo/CannotUndoException.java1
3 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 2f50d74f0..00f9120bb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2005-10-19 Roman Kennke <kennke@aicas.com>
+ * javax/swing/undo/CannotRedoException.java
+ * javax/swing/undo/CannotUndoException.java
+ Put super() call in empty constructors.
+
+2005-10-19 Roman Kennke <kennke@aicas.com>
+
* javax/swing/tree/DefaultMutableTreeNode.java
* javax/swing/tree/DefaultTreeCellEditor.java
* javax/swing/tree/TreeCellRenderer.java
diff --git a/javax/swing/undo/CannotRedoException.java b/javax/swing/undo/CannotRedoException.java
index 7d70a38c2..5f2264835 100644
--- a/javax/swing/undo/CannotRedoException.java
+++ b/javax/swing/undo/CannotRedoException.java
@@ -44,13 +44,13 @@ package javax.swing.undo;
* @author Andrew Selkirk (aselkirk@sympatico.ca)
* @author Sascha Brawer (brawer@dandelis.ch)
*/
-public class CannotRedoException
- extends RuntimeException
+public class CannotRedoException extends RuntimeException
{
/**
* Constructs a new instance of a <code>CannotRedoException</code>.
*/
public CannotRedoException()
{
+ super();
}
}
diff --git a/javax/swing/undo/CannotUndoException.java b/javax/swing/undo/CannotUndoException.java
index 9fc0ec3bd..8d08cda68 100644
--- a/javax/swing/undo/CannotUndoException.java
+++ b/javax/swing/undo/CannotUndoException.java
@@ -53,5 +53,6 @@ public class CannotUndoException
*/
public CannotUndoException()
{
+ super();
}
}