From commits-return-57210-apmail-harmony-commits-archive=harmony.apache.org@harmony.apache.org Wed Feb 04 12:56:42 2009 Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 90536 invoked from network); 4 Feb 2009 12:56:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 4 Feb 2009 12:56:42 -0000 Received: (qmail 9268 invoked by uid 500); 4 Feb 2009 12:56:42 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 9250 invoked by uid 500); 4 Feb 2009 12:56:41 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 9241 invoked by uid 99); 4 Feb 2009 12:56:41 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Feb 2009 04:56:41 -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 eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Feb 2009 12:56:41 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 4E0C023888E6; Wed, 4 Feb 2009 12:56:21 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r740721 - /harmony/enhanced/jdktools/trunk/modules/jdktools/src/main/java/com/sun/tools/javac/Main.java Date: Wed, 04 Feb 2009 12:56:21 -0000 To: commits@harmony.apache.org From: tellison@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090204125621.4E0C023888E6@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: tellison Date: Wed Feb 4 12:56:20 2009 New Revision: 740721 URL: http://svn.apache.org/viewvc?rev=740721&view=rev Log: Update Sun compatibility class in line with changes made for HARMONY-6079 ([jdktools] javac should exit with error code non-zero on compile errors) Modified: harmony/enhanced/jdktools/trunk/modules/jdktools/src/main/java/com/sun/tools/javac/Main.java Modified: harmony/enhanced/jdktools/trunk/modules/jdktools/src/main/java/com/sun/tools/javac/Main.java URL: http://svn.apache.org/viewvc/harmony/enhanced/jdktools/trunk/modules/jdktools/src/main/java/com/sun/tools/javac/Main.java?rev=740721&r1=740720&r2=740721&view=diff ============================================================================== --- harmony/enhanced/jdktools/trunk/modules/jdktools/src/main/java/com/sun/tools/javac/Main.java (original) +++ harmony/enhanced/jdktools/trunk/modules/jdktools/src/main/java/com/sun/tools/javac/Main.java Wed Feb 4 12:56:20 2009 @@ -36,6 +36,6 @@ public static int compile(String[] args, PrintWriter out, PrintWriter err) { org.apache.harmony.tools.javac.Main hyMain = new org.apache.harmony.tools.javac.Main(); - return hyMain.compile(args, out, err) ? 0 : 1; + return hyMain.compile(args, out, err); } }