Return-Path: Delivered-To: apmail-commons-commits-archive@locus.apache.org Received: (qmail 50342 invoked from network); 2 Sep 2007 21:12:31 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 2 Sep 2007 21:12:31 -0000 Received: (qmail 95445 invoked by uid 500); 2 Sep 2007 21:12:24 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 95406 invoked by uid 500); 2 Sep 2007 21:12:24 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 95397 invoked by uid 99); 2 Sep 2007 21:12:24 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 02 Sep 2007 14:12:24 -0700 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; Sun, 02 Sep 2007 21:13:37 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id B809F1A9832; Sun, 2 Sep 2007 14:12:06 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r572156 - /commons/proper/collections/branches/collections_jdk5_branch/src/java/org/apache/commons/collections/map/LazySortedMap.java Date: Sun, 02 Sep 2007 21:12:06 -0000 To: commits@commons.apache.org From: skestle@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20070902211206.B809F1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: skestle Date: Sun Sep 2 14:12:06 2007 New Revision: 572156 URL: http://svn.apache.org/viewvc?rev=572156&view=rev Log: Added generification for LazySortedMap to temporarily fix javac compilation problems Modified: commons/proper/collections/branches/collections_jdk5_branch/src/java/org/apache/commons/collections/map/LazySortedMap.java Modified: commons/proper/collections/branches/collections_jdk5_branch/src/java/org/apache/commons/collections/map/LazySortedMap.java URL: http://svn.apache.org/viewvc/commons/proper/collections/branches/collections_jdk5_branch/src/java/org/apache/commons/collections/map/LazySortedMap.java?rev=572156&r1=572155&r2=572156&view=diff ============================================================================== --- commons/proper/collections/branches/collections_jdk5_branch/src/java/org/apache/commons/collections/map/LazySortedMap.java (original) +++ commons/proper/collections/branches/collections_jdk5_branch/src/java/org/apache/commons/collections/map/LazySortedMap.java Sun Sep 2 14:12:06 2007 @@ -59,8 +59,8 @@ * @author Paul Jack */ public class LazySortedMap - extends LazyMap - implements SortedMap { + extends LazyMap + implements SortedMap { /** Serialization version */ private static final long serialVersionUID = 2715322183617658933L;