You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by li...@apache.org on 2007/03/06 11:07:16 UTC

svn commit: r515051 - /harmony/enhanced/classlib/trunk/modules/nio_char/src/test/java/tests/api/java/nio/charset/AbstractCharsetTestCase.java

Author: liangyx
Date: Tue Mar  6 02:07:15 2007
New Revision: 515051

URL: http://svn.apache.org/viewvc?view=rev&rev=515051
Log:
fix bugs of HARMONY-3306 patch

Modified:
    harmony/enhanced/classlib/trunk/modules/nio_char/src/test/java/tests/api/java/nio/charset/AbstractCharsetTestCase.java

Modified: harmony/enhanced/classlib/trunk/modules/nio_char/src/test/java/tests/api/java/nio/charset/AbstractCharsetTestCase.java
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/nio_char/src/test/java/tests/api/java/nio/charset/AbstractCharsetTestCase.java?view=diff&rev=515051&r1=515050&r2=515051
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/nio_char/src/test/java/tests/api/java/nio/charset/AbstractCharsetTestCase.java (original)
+++ harmony/enhanced/classlib/trunk/modules/nio_char/src/test/java/tests/api/java/nio/charset/AbstractCharsetTestCase.java Tue Mar  6 02:07:15 2007
@@ -9,7 +9,7 @@
 /**
  * Super class for concrete charset test suites.
  */
-public abstract class ConcreteCharsetTest extends TestCase {
+public abstract class AbstractCharsetTestCase extends TestCase {
 
 	// the canonical name of this charset
 	protected final String canonicalName;
@@ -47,7 +47,7 @@
 	 * Constructor for ConcreteCharsetTest.
 	 * 
 	 */
-	public ConcreteCharsetTest(String arg0, String canonicalName,
+	public AbstractCharsetTestCase(String arg0, String canonicalName,
 			String[] aliases, boolean canEncode, boolean isRegistered) {
 		super(arg0);
 		this.canonicalName = canonicalName;