diff options
author | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-03-31 09:55:09 +0000 |
---|---|---|
committer | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-03-31 09:55:09 +0000 |
commit | 56e566abe56f6177ffcc558e551475ff113c0718 (patch) | |
tree | 14ad6cd036e4063d514bf66528c9896205c62e59 /libjava/java | |
parent | 9f7419193640f36daef11150e17e32d20a3bc593 (diff) | |
download | ppe42-gcc-56e566abe56f6177ffcc558e551475ff113c0718.tar.gz ppe42-gcc-56e566abe56f6177ffcc558e551475ff113c0718.zip |
2003-03-31 Michael Koch <konqueror@gmx.de>
* java/awt/font/TextAttribute.java
(readResolve): Throws java.io.InvalidObjectException.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@65080 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java')
-rw-r--r-- | libjava/java/awt/font/TextAttribute.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libjava/java/awt/font/TextAttribute.java b/libjava/java/awt/font/TextAttribute.java index ccc8049c62f..c30f5fbe7ae 100644 --- a/libjava/java/awt/font/TextAttribute.java +++ b/libjava/java/awt/font/TextAttribute.java @@ -38,6 +38,7 @@ exception statement from your version. */ package java.awt.font; +import java.io.InvalidObjectException; import java.text.AttributedCharacterIterator; public final class TextAttribute extends AttributedCharacterIterator.Attribute @@ -115,6 +116,7 @@ public final class TextAttribute extends AttributedCharacterIterator.Attribute } protected Object readResolve () + throws InvalidObjectException { throw new Error ("not implemented"); } |