Return-Path: Delivered-To: apmail-hadoop-core-dev-archive@www.apache.org Received: (qmail 23790 invoked from network); 12 Feb 2008 01:51:35 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 12 Feb 2008 01:51:35 -0000 Received: (qmail 55361 invoked by uid 500); 12 Feb 2008 01:51:27 -0000 Delivered-To: apmail-hadoop-core-dev-archive@hadoop.apache.org Received: (qmail 55338 invoked by uid 500); 12 Feb 2008 01:51:27 -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 55329 invoked by uid 99); 12 Feb 2008 01:51:27 -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 17:51:27 -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; Tue, 12 Feb 2008 00:34:47 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 043C771406F for ; Mon, 11 Feb 2008 16:35:08 -0800 (PST) Message-ID: <20232319.1202776508003.JavaMail.jira@brutus> Date: Mon, 11 Feb 2008 16:35: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: ---------------------------------- Resolution: Fixed Status: Resolved (was: Patch Available) I just committed this. Thanks, Nicholas! > 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.