Return-Path: Delivered-To: apmail-maven-continuum-commits-archive@www.apache.org Received: (qmail 20651 invoked from network); 15 Sep 2006 04:01:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 15 Sep 2006 04:01:40 -0000 Received: (qmail 15587 invoked by uid 500); 15 Sep 2006 04:01:40 -0000 Delivered-To: apmail-maven-continuum-commits-archive@maven.apache.org Received: (qmail 15556 invoked by uid 500); 15 Sep 2006 04:01:40 -0000 Mailing-List: contact continuum-commits-help@maven.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: continuum-dev@maven.apache.org Delivered-To: mailing list continuum-commits@maven.apache.org Received: (qmail 15543 invoked by uid 99); 15 Sep 2006 04:01:40 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 Sep 2006 21:01:40 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 Sep 2006 21:01:39 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 88C541A981D; Thu, 14 Sep 2006 21:01:13 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r446507 - /maven/continuum/branches/continuum-acegi/continuum-webapp/src/main/java/org/apache/maven/continuum/web/action/ScheduleAction.java Date: Fri, 15 Sep 2006 04:01:13 -0000 To: continuum-commits@maven.apache.org From: carlos@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20060915040113.88C541A981D@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: carlos Date: Thu Sep 14 21:01:12 2006 New Revision: 446507 URL: http://svn.apache.org/viewvc?view=rev&rev=446507 Log: Fix syntax after bad merge Modified: maven/continuum/branches/continuum-acegi/continuum-webapp/src/main/java/org/apache/maven/continuum/web/action/ScheduleAction.java Modified: maven/continuum/branches/continuum-acegi/continuum-webapp/src/main/java/org/apache/maven/continuum/web/action/ScheduleAction.java URL: http://svn.apache.org/viewvc/maven/continuum/branches/continuum-acegi/continuum-webapp/src/main/java/org/apache/maven/continuum/web/action/ScheduleAction.java?view=diff&rev=446507&r1=446506&r2=446507 ============================================================================== --- maven/continuum/branches/continuum-acegi/continuum-webapp/src/main/java/org/apache/maven/continuum/web/action/ScheduleAction.java (original) +++ maven/continuum/branches/continuum-acegi/continuum-webapp/src/main/java/org/apache/maven/continuum/web/action/ScheduleAction.java Thu Sep 14 21:01:12 2006 @@ -76,16 +76,14 @@ schedule = getContinuum().getSchedule( id ); active = schedule.isActive(); - String[] cronEx = schedule.getCronExpression().split( " " ); - second = cronEx[0]; - minute = cronEx[1]; - hour = cronEx[2]; - dayOfMonth = cronEx[3]; - month = cronEx[4]; - dayOfWeek = cronEx[5]; - year = cronEx[6]; - i++; - } + String[] cronEx = schedule.getCronExpression().split( " " ); + second = cronEx[0]; + minute = cronEx[1]; + hour = cronEx[2]; + dayOfMonth = cronEx[3]; + month = cronEx[4]; + dayOfWeek = cronEx[5]; + year = cronEx[6]; description = schedule.getDescription(); name = schedule.getName();