Return-Path: Delivered-To: apmail-incubator-sling-commits-archive@locus.apache.org Received: (qmail 43052 invoked from network); 5 Dec 2007 13:12:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 5 Dec 2007 13:12:46 -0000 Received: (qmail 1860 invoked by uid 500); 5 Dec 2007 13:12:34 -0000 Delivered-To: apmail-incubator-sling-commits-archive@incubator.apache.org Received: (qmail 1815 invoked by uid 500); 5 Dec 2007 13:12:34 -0000 Mailing-List: contact sling-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: sling-dev@incubator.apache.org Delivered-To: mailing list sling-commits@incubator.apache.org Received: (qmail 1806 invoked by uid 99); 5 Dec 2007 13:12:34 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 05 Dec 2007 05:12:34 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 05 Dec 2007 13:12:22 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id E47771A9832; Wed, 5 Dec 2007 05:12:24 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r601328 - /incubator/sling/trunk/sling/event/src/main/java/org/apache/sling/event/impl/TimedEventHandler.java Date: Wed, 05 Dec 2007 13:12:24 -0000 To: sling-commits@incubator.apache.org From: cziegeler@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071205131224.E47771A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: cziegeler Date: Wed Dec 5 05:12:23 2007 New Revision: 601328 URL: http://svn.apache.org/viewvc?rev=601328&view=rev Log: Fix javadocs and ignore warning for type cast. Modified: incubator/sling/trunk/sling/event/src/main/java/org/apache/sling/event/impl/TimedEventHandler.java Modified: incubator/sling/trunk/sling/event/src/main/java/org/apache/sling/event/impl/TimedEventHandler.java URL: http://svn.apache.org/viewvc/incubator/sling/trunk/sling/event/src/main/java/org/apache/sling/event/impl/TimedEventHandler.java?rev=601328&r1=601327&r2=601328&view=diff ============================================================================== --- incubator/sling/trunk/sling/event/src/main/java/org/apache/sling/event/impl/TimedEventHandler.java (original) +++ incubator/sling/trunk/sling/event/src/main/java/org/apache/sling/event/impl/TimedEventHandler.java Wed Dec 5 05:12:23 2007 @@ -356,6 +356,7 @@ */ public void execute(JobContext context) { final String topic = (String) context.getConfiguration().get(JOB_TOPIC); + @SuppressWarnings("unchecked") final Dictionary properties = (Dictionary) context.getConfiguration().get(JOB_CONFIG); if ( this.eventAdmin != null ) { try {