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

From-SVN: r39640
This commit is contained in:
Tom Tromey 2001-02-13 18:48:46 +00:00 committed by Tom Tromey
parent 1eba9d1f8f
commit 967eb03e12
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,7 @@
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:

View File

@ -1,4 +1,4 @@
/* Copyright (C) 2000 Free Software Foundation
/* Copyright (C) 2000, 2001 Free Software Foundation
This file is part of libgcj.
@ -125,4 +125,9 @@ public abstract class AbstractGraphicsState implements Cloneable
public abstract void scale(double scaleX, double scaleY);
public abstract void shear(double shearX, double shearY);
public Object clone ()
{
return super.clone ();
}
}