Commit a8e097d6 by Jeff Sturm Committed by Jeff Sturm

re PR libgcj/10838 (GCC 3.3 [libjava]: java.io.ObjectInputStream syntax error)

PR libgcj/10838:
* java/io/ObjectInputStream (enableResolveObject):
Fixed spelling of permission name.

From-SVN: r67111
parent b731048b
2003-05-22 Jeff Sturm <jsturm@one-point.com>
PR libgcj/10838:
* java/io/ObjectInputStream (enableResolveObject):
Fixed spelling of permission name.
2003-05-20 Michael Koch <konqueror@gmx.de>
* java/io/DataInputStream.java
......
......@@ -614,7 +614,7 @@ public class ObjectInputStream extends InputStream
{
SecurityManager sm = System.getSecurityManager ();
if (sm != null)
sm.checkPermission (new SerializablePermission ("enableSubtitution"));
sm.checkPermission (new SerializablePermission ("enableSubstitution"));
}
boolean old_val = this.resolveEnabled;
......
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