File tree Expand file tree Collapse file tree 6 files changed +0
-34
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 Expand file tree Collapse file tree 6 files changed +0
-34
lines changed Original file line number Diff line number Diff line change @@ -128,11 +128,6 @@ public class Os {
128128 */
129129 private static final String DARWIN = "darwin" ;
130130
131- /**
132- * The path separator.
133- */
134- private static final String PATH_SEP = System .getProperty ("path.separator" );
135-
136131 static {
137132 // Those two public constants are initialized here, as they need all the private constants
138133 // 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 3535 *
3636 */
3737public final class CLIReportingUtils {
38- // CHECKSTYLE_OFF: MagicNumber
39- public static final long MB = 1024 * 1024 ;
40-
41- private static final long ONE_SECOND = 1000L ;
42-
43- private static final long ONE_MINUTE = 60 * ONE_SECOND ;
44-
45- private static final long ONE_HOUR = 60 * ONE_MINUTE ;
46-
47- private static final long ONE_DAY = 24 * ONE_HOUR ;
48- // CHECKSTYLE_ON: MagicNumber
4938
5039 public static final String BUILD_VERSION_PROPERTY = "version" ;
5140
Original file line number Diff line number Diff line change @@ -131,7 +131,6 @@ public class DefaultModelBuilder implements ModelBuilder {
131131 private static final String FILE = "file" ;
132132 private static final String IMPORT = "import" ;
133133 private static final String PARENT = "parent" ;
134- private static final String MODEL = "model" ;
135134
136135 private final Logger logger = LoggerFactory .getLogger (getClass ());
137136
Original file line number Diff line number Diff line change 2828
2929class MavenITmng6401ProxyPortInterpolationTest extends AbstractMavenIntegrationTestCase {
3030
31- private Proxy proxy ;
32-
33- private int port ;
34-
3531 protected MavenITmng6401ProxyPortInterpolationTest () {
3632 super ("(4.0.0-alpha-7,)" );
3733 }
Original file line number Diff line number Diff line change 1919package mng ;
2020
2121public class Module5 {
22- private Module4 m4 ;
2322}
Original file line number Diff line number Diff line change 4747 */
4848public class MyMojo extends AbstractMojo {
4949
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-
5650 /**
5751 * @parameter expression="${reactorProjects}"
5852 * @required
5953 */
6054 private List reactorProjects ;
6155
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-
6856 public void execute () throws MojoExecutionException {
6957 for (Iterator it = reactorProjects .iterator (); it .hasNext (); ) {
7058 MavenProject project = (MavenProject ) it .next ();
You can’t perform that action at this time.
0 commit comments