Skip to content

Commit

Permalink
Cleaned up Javadoc links
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed Nov 19, 2023
1 parent 59416e4 commit c83c76d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions src/main/java/rife/bld/extension/CompileKotlinOperation.java
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ public void execute()
}

/**
* Part of the {@link #execute} operation, builds the main sources.
* Part of the {@link #execute execute} operation, builds the main sources.
*/
protected void executeBuildMainSources()
throws IOException {
Expand All @@ -247,7 +247,7 @@ protected void executeBuildMainSources()
}

/**
* Part of the {@link #execute} operation, build sources to a given destination.
* Part of the {@link #execute execute} operation, build sources to a given destination.
*
* @param classpath the classpath list used for the compilation
* @param sources the source files to compile
Expand Down Expand Up @@ -301,7 +301,7 @@ protected void executeBuildSources(Collection<String> classpath, Collection<File
}

/**
* Part of the {@link #execute} operation, builds the test sources.
* Part of the {@link #execute execute} operation, builds the test sources.
*/
protected void executeBuildTestSources()
throws IOException {
Expand All @@ -313,7 +313,7 @@ protected void executeBuildTestSources()
}

/**
* Part of the {@link #execute} operation, creates the build directories.
* Part of the {@link #execute execute} operation, creates the build directories.
*/
protected void executeCreateBuildDirectories() throws IOException {
if (buildMainDirectory() != null && !buildMainDirectory().exists() && !buildMainDirectory().mkdirs()) {
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/rife/bld/extension/dokka/DokkaOperation.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public DokkaOperation delayTemplateSubstitution(Boolean delayTemplateSubstitutio
}

/**
* Part of the {@link #execute} operation, constructs the command list to use for building the process.
* Part of the {@link #execute execute} operation, constructs the command list to use for building the process.
*
* @since 1.5
*/
Expand Down Expand Up @@ -358,7 +358,7 @@ public DokkaOperation includes(String... files) {
}

/**
* Sets the Markdown
* Sets the Markdown files that contain module and package documentation.
* <p>
* The contents of specified files are parsed and embedded into documentation as module and package descriptions.
* <p>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/rife/bld/extension/dokka/SourceSet.java
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ public SourceSet dependentSourceSets(Map<String, String> dependentSourceSets) {
* Sets the display name of the source set, used both internally and externally.
* <p>
* The name is used both externally (for example, the source set name is visible to documentation readers) and
* internally (for example, for logging messages of {@link #reportUndocumented}).
* internally (for example, for logging messages of {@link #reportUndocumented reportUndocumented}).
* <p>
* The platform name can be used if you don't have a better alternative.
*
Expand Down Expand Up @@ -396,7 +396,7 @@ public SourceSet languageVersion(String languageVersion) {
* <p>
* Whether to generate external documentation links to JDK's Javadocs.
* <p>
* The version of JDK Javadocs is determined by the {@link #jdkVersion} option.
* The version of JDK Javadocs is determined by the {@link #jdkVersion jdkVersion} option.
* <p>
* Note: Links are generated when noJdkLink is set to false.
*
Expand Down

0 comments on commit c83c76d

Please sign in to comment.