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 cust-asf.ponee.io (Postfix) with SMTP id 9A5F6166131 for ; Tue, 22 Aug 2017 05:37:09 +0200 (CEST) Received: (qmail 9461 invoked by uid 500); 22 Aug 2017 03:37:08 -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 9452 invoked by uid 99); 22 Aug 2017 03:37:08 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Aug 2017 03:37:08 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id 4ACE1C006E for ; Tue, 22 Aug 2017 03:37:08 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -100.002 X-Spam-Level: X-Spam-Status: No, score=-100.002 tagged_above=-999 required=6.31 tests=[RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id HCauF_ExcmGo for ; Tue, 22 Aug 2017 03:37:07 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTP id 62BC360CF8 for ; Tue, 22 Aug 2017 03:37:06 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 2E065E08B4 for ; Tue, 22 Aug 2017 03:37:04 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id E1A1D25381 for ; Tue, 22 Aug 2017 03:37:00 +0000 (UTC) Date: Tue, 22 Aug 2017 03:37:00 +0000 (UTC) From: "ASF GitHub Bot (JIRA)" To: issues@flink.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (FLINK-7438) Some classes are eclipsed by classes in package scala MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/FLINK-7438?page=3Dcom.atlassian= .jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=3D1613= 6217#comment-16136217 ]=20 ASF GitHub Bot commented on FLINK-7438: --------------------------------------- GitHub user yew1eb opened a pull request: https://github.com/apache/flink/pull/4570 [FLINK-7438][DataStream API]Remove useless import, avoid warnings ## What is the purpose of the change Avoid warnings=EF=BC=8Cdetails: [ISSUE #FLINK-7438](https://issues.apac= he.org/jira/browse/FLINK-7438). =20 ## Brief change log Remove useless "import org.apache.flink.util.OutputTag" in DataStream.s= cala, AllWindowedStream.scala, WindowedStream.scala =20 ## Verifying this change =20 This change is already covered by existing tests. =20 ## Does this pull request potentially affect one of the following parts= : =20 - Dependencies (does it add or upgrade a dependency): (no) - The public API, i.e., is any changed class annotated with `@Public(= Evolving)`: (no) - The serializers: (no) - The runtime per-record code paths (performance sensitive): (no) - Anything that affects deployment or recovery: JobManager (and its c= omponents), Checkpointing, Yarn/Mesos, ZooKeeper: (no) =20 ## Documentation =20 - Does this pull request introduce a new feature? (no) - If yes, how is the feature documented? (not applicable / docs / Jav= aDocs / not documented) =20 You can merge this pull request into a Git repository by running: $ git pull https://github.com/yew1eb/flink FLINK-7438 Alternatively you can review and apply these changes as the patch at: https://github.com/apache/flink/pull/4570.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #4570 =20 ---- commit d28f4b8eca85230faea8c3b8c9b868741fc63886 Author: yew1eb Date: 2017-08-22T03:16:51Z Remove useless import, avoid warnings ---- > Some classes are eclipsed by classes in package scala > ----------------------------------------------------- > > Key: FLINK-7438 > URL: https://issues.apache.org/jira/browse/FLINK-7438 > Project: Flink > Issue Type: Bug > Components: Build System, DataStream API > Reporter: Ted Yu > Priority: Minor > > Noticed the following during compilation: > {code} > [WARNING] /flink/flink-streaming-scala/src/main/scala/org/apache/flink/st= reaming/api/scala/WindowedStream.scala:33: warning: imported `OutputTag' is= permanently hidden by definition of object OutputTag in package scala > [WARNING] import org.apache.flink.util.{Collector, OutputTag} > [WARNING] ^ > [WARNING] /flink/flink-streaming-scala/src/main/scala/org/apache/flink/st= reaming/api/scala/WindowedStream.scala:33: warning: imported `OutputTag' is= permanently hidden by definition of class OutputTag in package scala > [WARNING] import org.apache.flink.util.{Collector, OutputTag} > {code} > We should avoid the warning e.r.t. OutputTag. > There may be other occurrences of similar warning. -- This message was sent by Atlassian JIRA (v6.4.14#64029)