1
0

JUnit TestCase class has had a default constructor for a long while now,

so remove pointless constructors for TestCase subclasses.


git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@209407 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Simon Kitching
2005-07-06 05:14:12 +00:00
parent 03f98ac40f
commit 85836bd32e
4 changed files with 0 additions and 39 deletions

View File

@@ -28,11 +28,6 @@ import junit.framework.*;
*/
public abstract class AbstractLogTest extends TestCase {
public AbstractLogTest(String testName) {
super(testName);
}
public abstract Log getLogObject();
public void testLoggingWithNullParameters()