Skip to content

Commit

Permalink
fixes java doc warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
appiepollo14 committed Oct 15, 2023
1 parent ec4074a commit b8b8ad9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,9 @@ public void codeGenForkOptions(Action<? super JavaForkOptions> action) {

/**
* Returns the last file from the specified {@link FileCollection}.
*
* @param fileCollection the collection of files present in the directory
* @return result returns the last file
*/
public static File getLastFile(FileCollection fileCollection) {
File result = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,8 @@ public QuarkusDev(
/**
* The dependency Configuration associated with this task. Used
* for up-to-date checks
*
* @return quarkusDevConfiguration returns the configuration
*/
@SuppressWarnings("unused")
@CompileClasspath
Expand All @@ -151,6 +153,8 @@ public Configuration getQuarkusDevConfiguration() {

/**
* The JVM sources (Java, Kotlin, ..) for the project
*
* @return the FileCollection of all java source files present in the source directories
*/
@Optional
@InputFiles
Expand All @@ -161,6 +165,8 @@ public FileCollection getSources() {

/**
* The JVM classes directory (compilation output)
*
* @return the FileCollection of all java source files present in the source directories
*/
@Optional
@InputFiles
Expand All @@ -174,6 +180,8 @@ public FileCollection getCompilationOutput() {
*
* Defaults to the main source set's classes directory. If there are
* multiple, one is picked at random (see {@link QuarkusPluginExtension#getLastFile}).
*
* @return workingDirectory
*/
@Input
public Property<File> getWorkingDirectory() {
Expand Down Expand Up @@ -204,6 +212,7 @@ public Property<Boolean> getPreventNoVerify() {
}

/**
* @return boolean value of getPreventNoVerify()
* @deprecated see {@link #getPreventNoVerify()}
*/
@SuppressWarnings("SpellCheckingInspection")
Expand Down

0 comments on commit b8b8ad9

Please sign in to comment.