Skip to content

Commit b8b8ad9

Browse files
committed
fixes java doc warnings
1 parent ec4074a commit b8b8ad9

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

devtools/gradle/gradle-application-plugin/src/main/java/io/quarkus/gradle/extension/QuarkusPluginExtension.java

+3
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,9 @@ public void codeGenForkOptions(Action<? super JavaForkOptions> action) {
204204

205205
/**
206206
* Returns the last file from the specified {@link FileCollection}.
207+
*
208+
* @param fileCollection the collection of files present in the directory
209+
* @return result returns the last file
207210
*/
208211
public static File getLastFile(FileCollection fileCollection) {
209212
File result = null;

devtools/gradle/gradle-application-plugin/src/main/java/io/quarkus/gradle/tasks/QuarkusDev.java

+9
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,8 @@ public QuarkusDev(
142142
/**
143143
* The dependency Configuration associated with this task. Used
144144
* for up-to-date checks
145+
*
146+
* @return quarkusDevConfiguration returns the configuration
145147
*/
146148
@SuppressWarnings("unused")
147149
@CompileClasspath
@@ -151,6 +153,8 @@ public Configuration getQuarkusDevConfiguration() {
151153

152154
/**
153155
* The JVM sources (Java, Kotlin, ..) for the project
156+
*
157+
* @return the FileCollection of all java source files present in the source directories
154158
*/
155159
@Optional
156160
@InputFiles
@@ -161,6 +165,8 @@ public FileCollection getSources() {
161165

162166
/**
163167
* The JVM classes directory (compilation output)
168+
*
169+
* @return the FileCollection of all java source files present in the source directories
164170
*/
165171
@Optional
166172
@InputFiles
@@ -174,6 +180,8 @@ public FileCollection getCompilationOutput() {
174180
*
175181
* Defaults to the main source set's classes directory. If there are
176182
* multiple, one is picked at random (see {@link QuarkusPluginExtension#getLastFile}).
183+
*
184+
* @return workingDirectory
177185
*/
178186
@Input
179187
public Property<File> getWorkingDirectory() {
@@ -204,6 +212,7 @@ public Property<Boolean> getPreventNoVerify() {
204212
}
205213

206214
/**
215+
* @return boolean value of getPreventNoVerify()
207216
* @deprecated see {@link #getPreventNoVerify()}
208217
*/
209218
@SuppressWarnings("SpellCheckingInspection")

0 commit comments

Comments
 (0)