2003-03-31 Michael Koch <konqueror@gmx.de>

* java/awt/font/TextAttribute.java
	(readResolve): Throws java.io.InvalidObjectException.

From-SVN: r65080
This commit is contained in:
Michael Koch 2003-03-31 09:55:09 +00:00 committed by Michael Koch
parent a1bda993d5
commit c32130d9d2
2 changed files with 7 additions and 0 deletions

View file

@ -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");
}