Commit 967eb03e by Tom Tromey Committed by Tom Tromey

* gnu/awt/j2d/AbstractGraphicsState.java (clone): Made public.

From-SVN: r39640
parent 1eba9d1f
2001-02-13 Tom Tromey <tromey@redhat.com> 2001-02-13 Tom Tromey <tromey@redhat.com>
* gnu/awt/j2d/AbstractGraphicsState.java (clone): Made public.
2001-02-13 Tom Tromey <tromey@redhat.com>
Fix for PR libgcj/1351: Fix for PR libgcj/1351:
* posix.cc (_Jv_select): Throw InterruptedIOException if thread is * posix.cc (_Jv_select): Throw InterruptedIOException if thread is
interrupted. interrupted.
......
/* Copyright (C) 2000 Free Software Foundation /* Copyright (C) 2000, 2001 Free Software Foundation
This file is part of libgcj. This file is part of libgcj.
...@@ -125,4 +125,9 @@ public abstract class AbstractGraphicsState implements Cloneable ...@@ -125,4 +125,9 @@ public abstract class AbstractGraphicsState implements Cloneable
public abstract void scale(double scaleX, double scaleY); public abstract void scale(double scaleX, double scaleY);
public abstract void shear(double shearX, double shearY); public abstract void shear(double shearX, double shearY);
public Object clone ()
{
return super.clone ();
}
} }
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