From commits-return-4059-apmail-continuum-commits-archive=continuum.apache.org@continuum.apache.org Thu Jun 26 12:24:52 2008 Return-Path: Delivered-To: apmail-continuum-commits-archive@www.apache.org Received: (qmail 51458 invoked from network); 26 Jun 2008 12:24:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 26 Jun 2008 12:24:52 -0000 Received: (qmail 32167 invoked by uid 500); 26 Jun 2008 12:24:54 -0000 Delivered-To: apmail-continuum-commits-archive@continuum.apache.org Received: (qmail 32148 invoked by uid 500); 26 Jun 2008 12:24:54 -0000 Mailing-List: contact commits-help@continuum.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@continuum.apache.org Delivered-To: mailing list commits@continuum.apache.org Received: (qmail 32139 invoked by uid 99); 26 Jun 2008 12:24:54 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 26 Jun 2008 05:24:54 -0700 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; Thu, 26 Jun 2008 12:24:12 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 033932388A2B; Thu, 26 Jun 2008 05:24:32 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r671875 - /continuum/trunk/continuum-core/src/main/java/org/apache/maven/continuum/buildcontroller/DefaultBuildController.java Date: Thu, 26 Jun 2008 12:24:31 -0000 To: commits@continuum.apache.org From: evenisse@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080626122432.033932388A2B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: evenisse Date: Thu Jun 26 05:24:31 2008 New Revision: 671875 URL: http://svn.apache.org/viewvc?rev=671875&view=rev Log: Fix missing ';' Modified: continuum/trunk/continuum-core/src/main/java/org/apache/maven/continuum/buildcontroller/DefaultBuildController.java Modified: continuum/trunk/continuum-core/src/main/java/org/apache/maven/continuum/buildcontroller/DefaultBuildController.java URL: http://svn.apache.org/viewvc/continuum/trunk/continuum-core/src/main/java/org/apache/maven/continuum/buildcontroller/DefaultBuildController.java?rev=671875&r1=671874&r2=671875&view=diff ============================================================================== --- continuum/trunk/continuum-core/src/main/java/org/apache/maven/continuum/buildcontroller/DefaultBuildController.java (original) +++ continuum/trunk/continuum-core/src/main/java/org/apache/maven/continuum/buildcontroller/DefaultBuildController.java Thu Jun 26 05:24:31 2008 @@ -485,7 +485,7 @@ if ( context.getTrigger() != ContinuumProjectState.TRIGGER_FORCED ) { getLogger().info( "The project build is forced, building" ); - return true + return true; } boolean shouldBuild = false;