GEODE-2614: fix javadoc warnings
Project: http://git-wip-us.apache.org/repos/asf/geode/repo Commit: http://git-wip-us.apache.org/repos/asf/geode/commit/0ca3fe27 Tree: http://git-wip-us.apache.org/repos/asf/geode/tree/0ca3fe27 Diff: http://git-wip-us.apache.org/repos/asf/geode/diff/0ca3fe27 Branch: refs/heads/develop Commit: 0ca3fe271bc4e30a352f5a9b600b5a58bb2c4a92 Parents: 3bde1a7 Author: Jinmei Liao <[email protected]> Authored: Wed Mar 8 09:50:06 2017 -0800 Committer: Kevin J. Duling <[email protected]> Committed: Wed Mar 8 10:43:30 2017 -0800 ---------------------------------------------------------------------- .../geode/management/internal/cli/CliAroundInterceptor.java | 3 +-- .../apache/geode/management/internal/cli/util/LogExporter.java | 6 +++--- 2 files changed, 4 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/geode/blob/0ca3fe27/geode-core/src/main/java/org/apache/geode/management/internal/cli/CliAroundInterceptor.java ---------------------------------------------------------------------- diff --git a/geode-core/src/main/java/org/apache/geode/management/internal/cli/CliAroundInterceptor.java b/geode-core/src/main/java/org/apache/geode/management/internal/cli/CliAroundInterceptor.java index 99114f0..f552460 100644 --- a/geode-core/src/main/java/org/apache/geode/management/internal/cli/CliAroundInterceptor.java +++ b/geode-core/src/main/java/org/apache/geode/management/internal/cli/CliAroundInterceptor.java @@ -38,8 +38,7 @@ public interface CliAroundInterceptor { /** * called by the OperationInvoker after the command is executed - * - * @param tempFile: if the command's isFileDownloadOverHttp is true, the is the File downloaded + * @param tempFile if the command's isFileDownloadOverHttp is true, the is the File downloaded * after the http response is processed. */ default Result postExecution(GfshParseResult parseResult, Result commandResult, Path tempFile) { http://git-wip-us.apache.org/repos/asf/geode/blob/0ca3fe27/geode-core/src/main/java/org/apache/geode/management/internal/cli/util/LogExporter.java ---------------------------------------------------------------------- diff --git a/geode-core/src/main/java/org/apache/geode/management/internal/cli/util/LogExporter.java b/geode-core/src/main/java/org/apache/geode/management/internal/cli/util/LogExporter.java index a4bef75..a0be7fb 100644 --- a/geode-core/src/main/java/org/apache/geode/management/internal/cli/util/LogExporter.java +++ b/geode-core/src/main/java/org/apache/geode/management/internal/cli/util/LogExporter.java @@ -48,9 +48,9 @@ public class LogExporter { private final File baseStatsFile; /** - * @param logFilter: the filter that's used to check if we need to accept the file or the logLine - * @param baseLogFile: if not null, we will export the logs in that directory - * @param baseStatsFile: if not null, we will export stats in that directory + * @param logFilter the filter that's used to check if we need to accept the file or the logLine + * @param baseLogFile if not null, we will export the logs in that directory + * @param baseStatsFile if not null, we will export stats in that directory * @throws ParseException */ public LogExporter(LogFilter logFilter, File baseLogFile, File baseStatsFile)
