You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by ka...@apache.org on 2010/06/28 12:14:54 UTC

svn commit: r958530 - in /db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/i18n: LocalizedAttributeScriptTest.java LocalizedDisplayScriptTest.java

Author: kahatlen
Date: Mon Jun 28 10:14:54 2010
New Revision: 958530

URL: http://svn.apache.org/viewvc?rev=958530&view=rev
Log:
DERBY-4718: Correct wrong main() method in LocalizedDisplayScriptTest and LocalizedAttributeScriptTest

Patch contributed by Yun Lee <yu...@gmail.com>.

Modified:
    db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/i18n/LocalizedAttributeScriptTest.java
    db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/i18n/LocalizedDisplayScriptTest.java

Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/i18n/LocalizedAttributeScriptTest.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/i18n/LocalizedAttributeScriptTest.java?rev=958530&r1=958529&r2=958530&view=diff
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/i18n/LocalizedAttributeScriptTest.java (original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/i18n/LocalizedAttributeScriptTest.java Mon Jun 28 10:14:54 2010
@@ -54,7 +54,7 @@ public final class LocalizedAttributeScr
      * java org.apache.derbyTesting.functionTests.tests.i18n.LocalizedAttributeScriptTest
      * </code>
      */
-    public static void main()
+    public static void main(String[] args)
     {
         junit.textui.TestRunner.run(getSuite());
     }

Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/i18n/LocalizedDisplayScriptTest.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/i18n/LocalizedDisplayScriptTest.java?rev=958530&r1=958529&r2=958530&view=diff
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/i18n/LocalizedDisplayScriptTest.java (original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/i18n/LocalizedDisplayScriptTest.java Mon Jun 28 10:14:54 2010
@@ -53,7 +53,7 @@ public final class LocalizedDisplayScrip
      * java org.apache.derbyTesting.functionTests.tests.i18n.LocalizedSuite
      * </code>
      */
-    public static void main()
+    public static void main(String[] args)
     {
         junit.textui.TestRunner.run(getSuite());
     }