Suppress 'no @return' javadoc warning

Generating ...avadoc/com/google/gerrit/launcher/GerritLauncher.html...
...google/gerrit/launcher/GerritLauncher.java:580: warning: no @return
  public static Path getDeveloperEclipseOut() throws ...
                     ^
...google/gerrit/launcher/GerritLauncher.java:589: warning: no @return
  public static Path getDeveloperBuckOut() throws ...
                     ^

Change-Id: Ide5877d08687c42a65a5563514433fbdcb3ce5f6
This commit is contained in:
Sergii Babych
2016-11-12 07:01:43 +02:00
committed by Sergii Babych
parent dc8ee7b3a2
commit 175138e9e9

View File

@@ -615,6 +615,7 @@ public final class GerritLauncher {
/**
* Locate the path of the {@code eclipse-out} directory in a source tree.
*
* @return local path of the {@code eclipse-out} directory in a source tree.
* @throws FileNotFoundException if the directory cannot be found.
*/
public static Path getDeveloperEclipseOut() throws FileNotFoundException {
@@ -624,6 +625,7 @@ public final class GerritLauncher {
/**
* Locate the path of the {@code buck-out} directory in a source tree.
*
* @return local path of the {@code buck-out} directory in a source tree.
* @throws FileNotFoundException if the directory cannot be found.
*/
public static Path getDeveloperBuckOut() throws FileNotFoundException {