compilett4:
[javac] Compiling 1 source file to Apache/TinderBox_Derby/trunk/classes
[javac]
Apache/TinderBox_Derby/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/_Suite.java:81:
suite() has private access in
org.apache.derbyTesting.functionTests.tests.lang.CastingTest
[javac] suite.addTest(CastingTest.suite());
[javac] ^
[javac] 1 error
I'm assuming this is just a typo in CastingTest.java and that changing "private"
to "public" is the right thing to do:
@@ -592,7 +592,7 @@
return "'" + str + "'";
}
- private static Test suite() {
+ public static Test suite() {
return TestConfiguration.defaultSuite(CastingTest.class);
So that's what I did with svn #513573
Please feel free to revert or otherwise change if that was wrong...
Army