This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
[patch] merge from classpath MacSpi.java
- From: Andreas Tobler <toa at pop dot agri dot ch>
- To: Java Patches <java-patches at gcc dot gnu dot org>
- Date: Tue, 21 Sep 2004 19:31:41 +0200
- Subject: [patch] merge from classpath MacSpi.java
hello again,
here another one.
Usual procedure? Ok, if no regressions?
thanks,
Andreas
2004-09-21 Casey Marshall <csm@gnu.org>
* javax/crypto/MacSpi.java (clone): Provide meaningful
implementation.
Index: javax/crypto/MacSpi.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/javax/crypto/MacSpi.java,v
retrieving revision 1.1
diff -u -r1.1 MacSpi.java
--- javax/crypto/MacSpi.java 21 Sep 2004 08:33:31 -0000 1.1
+++ javax/crypto/MacSpi.java 21 Sep 2004 17:29:00 -0000
@@ -83,7 +83,7 @@
*/
public Object clone() throws CloneNotSupportedException
{
- throw new CloneNotSupportedException();
+ return super.clone();
}
// Abstract instance methods.