File tree 6 files changed +0
-25
lines changed
compat/maven-model-builder/src/main/java/org/apache/maven/utils
maven-cli/src/main/java/org/apache/maven/cling/utils
maven-impl/src/main/java/org/apache/maven/impl/model
its/core-it-suite/src/test
mng-3259/module5/src/main/java/mng
mng-3694/maven-mng3694-plugin/src/main/java/plugin
6 files changed +0
-25
lines changed Original file line number Diff line number Diff line change @@ -128,11 +128,6 @@ public class Os {
128
128
*/
129
129
private static final String DARWIN = "darwin" ;
130
130
131
- /**
132
- * The path separator.
133
- */
134
- private static final String PATH_SEP = System .getProperty ("path.separator" );
135
-
136
131
static {
137
132
// Those two public constants are initialized here, as they need all the private constants
138
133
// above to be initialized first, but the code style imposes the public constants to be
Original file line number Diff line number Diff line change @@ -43,8 +43,6 @@ public final class CLIReportingUtils {
43
43
private static final long ONE_MINUTE = 60 * ONE_SECOND ;
44
44
45
45
private static final long ONE_HOUR = 60 * ONE_MINUTE ;
46
-
47
- private static final long ONE_DAY = 24 * ONE_HOUR ;
48
46
// CHECKSTYLE_ON: MagicNumber
49
47
50
48
public static final String BUILD_VERSION_PROPERTY = "version" ;
Original file line number Diff line number Diff line change @@ -131,7 +131,6 @@ public class DefaultModelBuilder implements ModelBuilder {
131
131
private static final String FILE = "file" ;
132
132
private static final String IMPORT = "import" ;
133
133
private static final String PARENT = "parent" ;
134
- private static final String MODEL = "model" ;
135
134
136
135
private final Logger logger = LoggerFactory .getLogger (getClass ());
137
136
Original file line number Diff line number Diff line change 28
28
29
29
class MavenITmng6401ProxyPortInterpolationTest extends AbstractMavenIntegrationTestCase {
30
30
31
- private Proxy proxy ;
32
-
33
- private int port ;
34
-
35
31
protected MavenITmng6401ProxyPortInterpolationTest () {
36
32
super ("(4.0.0-alpha-7,)" );
37
33
}
Original file line number Diff line number Diff line change 19
19
package mng ;
20
20
21
21
public class Module5 {
22
- private Module4 m4 ;
23
22
}
Original file line number Diff line number Diff line change 47
47
*/
48
48
public class MyMojo extends AbstractMojo {
49
49
50
- /**
51
- * Not used, just an offset to place reactorProjects in the middle.
52
- * @parameter default-value="${project.build.directory}"
53
- */
54
- private String outputDirectory ;
55
-
56
50
/**
57
51
* @parameter expression="${reactorProjects}"
58
52
* @required
59
53
*/
60
54
private List reactorProjects ;
61
55
62
- /**
63
- * Not used, just an offset to place reactorProjects in the middle.
64
- * @parameter default-value="${project.build.directory}"
65
- */
66
- private String outputDirectory2 ;
67
-
68
56
public void execute () throws MojoExecutionException {
69
57
for (Iterator it = reactorProjects .iterator (); it .hasNext (); ) {
70
58
MavenProject project = (MavenProject ) it .next ();
You can’t perform that action at this time.
0 commit comments