Skip to content

Commit 05ad8b8

Browse files
authored
remove todos and other IDE inserted boilerplate (#61)
1 parent becbbbc commit 05ad8b8

File tree

4 files changed

+0
-19
lines changed

4 files changed

+0
-19
lines changed

src/test/java/org/apache/maven/plugins/dependency/AbstractDependencyMojoTestCase.java

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,6 @@ public abstract class AbstractDependencyMojoTestCase
3535

3636
protected DependencyArtifactStubFactory stubFactory;
3737

38-
public AbstractDependencyMojoTestCase()
39-
{
40-
super();
41-
}
42-
4338
protected void setUp( String testDirStr, boolean createFiles )
4439
throws Exception
4540
{
@@ -69,16 +64,11 @@ protected void tearDown()
6964
}
7065
catch ( IOException e )
7166
{
72-
// TODO Auto-generated catch block
7367
e.printStackTrace();
7468
fail( "Trying to remove directory:" + testDir + System.lineSeparator() + e.toString() );
7569
}
7670
assertFalse( testDir.exists() );
77-
78-
testDir = null;
7971
}
80-
81-
stubFactory = null;
8272
}
8373

8474
protected void copyFile( AbstractDependencyMojo mojo, File artifact, File destFile )

src/test/java/org/apache/maven/plugins/dependency/testUtils/stubs/StubDefaultFileMarkerHandler.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ public class StubDefaultFileMarkerHandler
3131
public StubDefaultFileMarkerHandler( Artifact artifact, File markerFilesDirectory )
3232
{
3333
super( artifact, markerFilesDirectory );
34-
// TODO Auto-generated constructor stub
3534
}
3635

3736
protected File getMarkerFile()

src/test/java/org/apache/maven/plugins/dependency/testUtils/stubs/StubMarkerFile.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,33 +27,26 @@ public class StubMarkerFile
2727
extends File
2828
{
2929

30-
/**
31-
*
32-
*/
3330
private static final long serialVersionUID = 1L;
3431

3532
public StubMarkerFile( String pathname )
3633
{
3734
super( pathname );
38-
// TODO Auto-generated constructor stub
3935
}
4036

4137
public StubMarkerFile( URI uri )
4238
{
4339
super( uri );
44-
// TODO Auto-generated constructor stub
4540
}
4641

4742
public StubMarkerFile( File parent, String child )
4843
{
4944
super( parent, child );
50-
// TODO Auto-generated constructor stub
5145
}
5246

5347
public StubMarkerFile( String parent, String child )
5448
{
5549
super( parent, child );
56-
// TODO Auto-generated constructor stub
5750
}
5851

5952
public boolean createNewFile()

src/test/java/org/apache/maven/plugins/dependency/testUtils/stubs/StubSourcesFileMarkerHandler.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ public class StubSourcesFileMarkerHandler
3131
public StubSourcesFileMarkerHandler( Artifact artifact, File markerFilesDirectory, boolean resolved )
3232
{
3333
super( artifact, markerFilesDirectory, resolved );
34-
// TODO Auto-generated constructor stub
3534
}
3635

3736
protected File getMarkerFile( boolean res )

0 commit comments

Comments
 (0)