Commit c32130d9 by Michael Koch Committed by Michael Koch

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

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

From-SVN: r65080
parent a1bda993
2003-03-31 Michael Koch <konqueror@gmx.de> 2003-03-31 Michael Koch <konqueror@gmx.de>
* java/awt/font/TextAttribute.java
(readResolve): Throws java.io.InvalidObjectException.
2003-03-31 Michael Koch <konqueror@gmx.de>
* java/rmi/server/LoaderHandler.java * java/rmi/server/LoaderHandler.java
(loadClass): Deprecated. (loadClass): Deprecated.
(getSecurityContext): Deprecated. (getSecurityContext): Deprecated.
......
...@@ -38,6 +38,7 @@ exception statement from your version. */ ...@@ -38,6 +38,7 @@ exception statement from your version. */
package java.awt.font; package java.awt.font;
import java.io.InvalidObjectException;
import java.text.AttributedCharacterIterator; import java.text.AttributedCharacterIterator;
public final class TextAttribute extends AttributedCharacterIterator.Attribute public final class TextAttribute extends AttributedCharacterIterator.Attribute
...@@ -115,6 +116,7 @@ public final class TextAttribute extends AttributedCharacterIterator.Attribute ...@@ -115,6 +116,7 @@ public final class TextAttribute extends AttributedCharacterIterator.Attribute
} }
protected Object readResolve () protected Object readResolve ()
throws InvalidObjectException
{ {
throw new Error ("not implemented"); throw new Error ("not implemented");
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment