From issues-return-158307-archive-asf-public=cust-asf.ponee.io@flink.apache.org Wed Mar 14 09:46:15 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 9F98B180654 for ; Wed, 14 Mar 2018 09:46:14 +0100 (CET) Received: (qmail 99454 invoked by uid 500); 14 Mar 2018 08:46:13 -0000 Mailing-List: contact issues-help@flink.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flink.apache.org Delivered-To: mailing list issues@flink.apache.org Received: (qmail 99445 invoked by uid 99); 14 Mar 2018 08:46:13 -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; Wed, 14 Mar 2018 08:46:13 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 6945CE8F23; Wed, 14 Mar 2018 08:46:13 +0000 (UTC) From: zentol To: issues@flink.apache.org Reply-To: issues@flink.apache.org References: In-Reply-To: Subject: [GitHub] flink pull request #5691: [FLINK-8802] [QS] Fix concurrent access to non-dup... Content-Type: text/plain Message-Id: <20180314084613.6945CE8F23@git1-us-west.apache.org> Date: Wed, 14 Mar 2018 08:46:13 +0000 (UTC) Github user zentol commented on a diff in the pull request: https://github.com/apache/flink/pull/5691#discussion_r174379723 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/state/internal/InternalMergingState.java --- @@ -26,12 +26,14 @@ * The peer to the {@link MergingState} in the internal state type hierarchy. * * See {@link InternalKvState} for a description of the internal state hierarchy. - * - * @param The type of the namespace - * @param The type of elements added to the state - * @param The type of elements + * + * @param The type of key the state is associated to + * @param The type of the namespace + * @param The type of elements added to the state + * @param The type of elements in the state + * @param The type of elements --- End diff -- indentation is off and the description deserves an extension ---