Return-Path: Delivered-To: apmail-hadoop-core-dev-archive@www.apache.org Received: (qmail 60251 invoked from network); 11 Feb 2008 22:39:32 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 11 Feb 2008 22:39:32 -0000 Received: (qmail 58918 invoked by uid 500); 11 Feb 2008 22:39:25 -0000 Delivered-To: apmail-hadoop-core-dev-archive@hadoop.apache.org Received: (qmail 58883 invoked by uid 500); 11 Feb 2008 22:39:25 -0000 Mailing-List: contact core-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: core-dev@hadoop.apache.org Delivered-To: mailing list core-dev@hadoop.apache.org Received: (qmail 58873 invoked by uid 99); 11 Feb 2008 22:39:25 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Feb 2008 14:39:25 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 11 Feb 2008 22:38:48 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 4D9E271406E for ; Mon, 11 Feb 2008 14:39:08 -0800 (PST) Message-ID: <17425908.1202769548264.JavaMail.jira@brutus> Date: Mon, 11 Feb 2008 14:39:08 -0800 (PST) From: "Chris Douglas (JIRA)" To: core-dev@hadoop.apache.org Subject: [jira] Updated: (HADOOP-2733) Compiler warnings in TestClusterMapReduceTestCase and TestJobStatusPersistency In-Reply-To: <28002853.1201647755517.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HADOOP-2733?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Chris Douglas updated HADOOP-2733: ---------------------------------- Assignee: Tsz Wo (Nicholas), SZE (was: Amar Kamat) Status: Patch Available (was: Open) > Compiler warnings in TestClusterMapReduceTestCase and TestJobStatusPersistency > ------------------------------------------------------------------------------ > > Key: HADOOP-2733 > URL: https://issues.apache.org/jira/browse/HADOOP-2733 > Project: Hadoop Core > Issue Type: Bug > Components: test > Affects Versions: 0.16.0 > Reporter: Konstantin Shvachko > Assignee: Tsz Wo (Nicholas), SZE > Fix For: 0.16.1 > > Attachments: 2802_20080211.patch, HADOOP-2733.patch > > > The following four warnings were introduced by HADOOP-1876. > {code} > [javac] hadoop/src/test/org/apache/hadoop/mapred/TestClusterMapReduceTestCase.java:26: warning: [unchecked] unchecked call to collect(K,V) as a member of the raw type org.apache.hadoop.mapred.OutputCollector > [javac] collector.collect(key, value); > [javac] ^ > [javac] hadoop/src/test/org/apache/hadoop/mapred/TestClusterMapReduceTestCase.java:42: warning: [unchecked] unchecked call to collect(K,V) as a member of the raw type org.apache.hadoop.mapred.OutputCollector > [javac] collector.collect(key, value); > [javac] ^ > [javac] hadoop/src/test/org/apache/hadoop/mapred/TestJobStatusPersistency.java:26: warning: [unchecked] unchecked call to collect(K,V) as a member of the raw type org.apache.hadoop.mapred.OutputCollector > [javac] collector.collect(key, value); > [javac] ^ > [javac] hadoop/src/test/org/apache/hadoop/mapred/TestJobStatusPersistency.java:42: warning: [unchecked] unchecked call to collect(K,V) as a member of the raw type org.apache.hadoop.mapred.OutputCollector > [javac] collector.collect(key, value); > [javac] ^ > [javac] Note: Some input files use or override a deprecated API. > [javac] Note: Recompile with -Xlint:deprecation for details. > [javac] 4 warnings > {code} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.