Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id A8E62200C56 for ; Thu, 9 Mar 2017 21:48:46 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id A79A2160B5F; Thu, 9 Mar 2017 20:48:46 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id B16D5160B8B for ; Thu, 9 Mar 2017 21:48:45 +0100 (CET) Received: (qmail 59605 invoked by uid 500); 9 Mar 2017 20:48:41 -0000 Mailing-List: contact commits-help@geode.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@geode.apache.org Delivered-To: mailing list commits@geode.apache.org Received: (qmail 58601 invoked by uid 99); 9 Mar 2017 20:48:41 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 09 Mar 2017 20:48:41 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 551DAE02B6; Thu, 9 Mar 2017 20:48:41 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: dschneider@apache.org To: commits@geode.apache.org Date: Thu, 09 Mar 2017 20:49:22 -0000 Message-Id: <14bc1727d5dc4411b9d2f2ab564b1592@git.apache.org> In-Reply-To: <6600437d93b4415a901cdb942b251307@git.apache.org> References: <6600437d93b4415a901cdb942b251307@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [43/50] [abbrv] geode git commit: GEODE-2614: fix javadoc warnings archived-at: Thu, 09 Mar 2017 20:48:46 -0000 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/feature/GEODE-1969 Commit: 0ca3fe271bc4e30a352f5a9b600b5a58bb2c4a92 Parents: 3bde1a7 Author: Jinmei Liao Authored: Wed Mar 8 09:50:06 2017 -0800 Committer: Kevin J. Duling 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)