This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[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.

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]