Skip to content

Commit 267de06

Browse files
authored
remove repetitive words (#1436)
Signed-off-by: carrychair <linghuchong404@gmail.com>
1 parent a0206ec commit 267de06

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/Builder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
/**
3131
* <p>
3232
* A {@link Builder} encapsulates a strategy for building a set of Maven projects. The default strategy in Maven builds
33-
* the the projects serially, but a {@link Builder} can employ any type of concurrency model to build the projects.
33+
* the projects serially, but a {@link Builder} can employ any type of concurrency model to build the projects.
3434
* </p>
3535
* <strong>Note:</strong> This interface is part of work in progress and can be changed or removed without notice.
3636
*/

maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/singlethreaded/SingleThreadedBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
/**
3737
* <p>
3838
* A {@link Builder} encapsulates a strategy for building a set of Maven projects. The default strategy in Maven builds
39-
* the the projects serially, but a {@link Builder} can employ any type of concurrency model to build the projects.
39+
* the projects serially, but a {@link Builder} can employ any type of concurrency model to build the projects.
4040
*/
4141
@Named("singlethreaded")
4242
@Singleton

maven-core/src/site/apt/configuration-management.apt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Configuration levels in maven
3232

3333
* Site configuration
3434

35-
At the site level all configuration is achieved by tweaking the the various files that
35+
At the site level all configuration is achieved by tweaking the various files that
3636
are available in the ${maven.home}/site-configuration directory
3737

3838
+-----+

maven-core/src/site/apt/offline-mode.apt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ Offline Mode Design
258258
<<online>> status, or else doesn't care.
259259

260260
* Otherwise, don't bind the mojo. Log a debug message to indicate that it is
261-
sensitive the the online state of the application, and that this state is
261+
sensitive the online state of the application, and that this state is
262262
currently wrong for execution.
263263

264264
<<NOTE:>> Do we want to fail when we cannot bind a mojo to the lifecycle

maven-embedder/src/main/java/org/eclipse/sisu/plexus/PlexusXmlBeanConverter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ private static <T> T newImplementation(final Class<T> clazz) {
339339
*
340340
* @param clazz The implementation type
341341
* @param value The string argument
342-
* @return Instance of given implementation, constructed using the the given string
342+
* @return Instance of given implementation, constructed using the given string
343343
*/
344344
private static <T> T newImplementation(final Class<T> clazz, final String value) {
345345
try {

0 commit comments

Comments
 (0)