Skip to content

Commit

Permalink
Cleaned up execute links
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed Oct 31, 2023
1 parent c9fe353 commit bd9b44a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions src/main/java/rife/bld/extension/AbstractBootOperation.java
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public String destinationFileName() {
}

/**
* Part of the {@link #execute} operation, copy the {@code spring-boot-loader} archive content to the staging
* Part of the {@link #execute execute} operation, copy the {@code spring-boot-loader} archive content to the staging
* directory.
*
* @param stagingDirectory the staging directory
Expand All @@ -162,7 +162,7 @@ protected void executeCopyBootLoader(File stagingDirectory) throws FileUtilsErro
}

/**
* Part of the {@link #execute} operation, copy the {@code BOOT-INF} or {@code WEB-INF} classes.
* Part of the {@link #execute execute} operation, copy the {@code BOOT-INF} or {@code WEB-INF} classes.
*
* @param stagingInfDirectory Tte staging {@code INF} directory
*/
Expand All @@ -182,7 +182,7 @@ protected void executeCopyInfClassesFiles(File stagingInfDirectory) throws IOExc
}

/**
* Part of the {@link #execute} operation, copy the {@code BOOT-INF} or (@code WEB-INF) libs.
* Part of the {@link #execute execute} operation, copy the {@code BOOT-INF} or (@code WEB-INF) libs.
*
* @param stagingInfDirectory the staging {@code INF} directory
*/
Expand All @@ -200,7 +200,7 @@ protected void executeCopyInfLibs(File stagingInfDirectory) throws IOException {
}

/**
* Part of the {@link #execute} operation, create the archive from the staging directory.
* Part of the {@link #execute execute} operation, create the archive from the staging directory.
*
* @param stagingDirectory the staging directory
* @return the archive
Expand Down Expand Up @@ -247,7 +247,7 @@ protected File executeCreateArchive(File stagingDirectory)
}

/**
* Part of the {@link #execute} operation, create the manifest for the archive.
* Part of the {@link #execute execute} operation, create the manifest for the archive.
*
* @param stagingDirectory the staging directory
*/
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/rife/bld/extension/BootJarOperation.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public void execute() throws Exception {
}

/**
* Part of the {@link #execute} operation, creates the {@code BOOT-INF} staging directory.
* Part of the {@link #execute execute} operation, creates the {@code BOOT-INF} staging directory.
*
* @param stagingDirectory the staging directory
* @return the {@code BOOT-INF} directory location
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/rife/bld/extension/BootWarOperation.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public void execute() throws Exception {
}

/**
* Part of the {@link #execute} operation, copy the {@code WEB-INF/lib-provided} libraries.
* Part of the {@link #execute execute} operation, copy the {@code WEB-INF/lib-provided} libraries.
*
* @param stagingWebInfDirectory the staging {@code WEB-INF/lib-provided} directory
*/
Expand All @@ -84,7 +84,7 @@ protected void executeCopyWebInfProvidedLib(File stagingWebInfDirectory) throws
}

/**
* Part of the {@link #execute} operation, creates the {@code WEB-INF} staging directory.
* Part of the {@link #execute execute} operation, creates the {@code WEB-INF} staging directory.
*
* @return the {@code WEB-INF} directory location
*/
Expand Down

0 comments on commit bd9b44a

Please sign in to comment.