Return-Path: Delivered-To: apmail-struts-commits-archive@locus.apache.org Received: (qmail 5998 invoked from network); 7 Jan 2007 05:25:54 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 7 Jan 2007 05:25:54 -0000 Received: (qmail 12494 invoked by uid 500); 7 Jan 2007 05:26:00 -0000 Delivered-To: apmail-struts-commits-archive@struts.apache.org Received: (qmail 12450 invoked by uid 500); 7 Jan 2007 05:26:00 -0000 Mailing-List: contact commits-help@struts.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@struts.apache.org Delivered-To: mailing list commits@struts.apache.org Received: (qmail 12441 invoked by uid 99); 7 Jan 2007 05:26:00 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 06 Jan 2007 21:26:00 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME 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; Sat, 06 Jan 2007 21:25:52 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 73D601A981A; Sat, 6 Jan 2007 21:24:54 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r493649 - in /struts/maven/trunk/struts-annotations: pom.xml src/main/java/org/apache/struts/annotations/taglib/apt/Tag.java Date: Sun, 07 Jan 2007 05:24:54 -0000 To: commits@struts.apache.org From: mrdon@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070107052454.73D601A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: mrdon Date: Sat Jan 6 21:24:51 2007 New Revision: 493649 URL: http://svn.apache.org/viewvc?view=rev&rev=493649 Log: Sorted tag attributes by name WW-1392 Modified: struts/maven/trunk/struts-annotations/pom.xml struts/maven/trunk/struts-annotations/src/main/java/org/apache/struts/annotations/taglib/apt/Tag.java Modified: struts/maven/trunk/struts-annotations/pom.xml URL: http://svn.apache.org/viewvc/struts/maven/trunk/struts-annotations/pom.xml?view=diff&rev=493649&r1=493648&r2=493649 ============================================================================== --- struts/maven/trunk/struts-annotations/pom.xml (original) +++ struts/maven/trunk/struts-annotations/pom.xml Sat Jan 6 21:24:51 2007 @@ -10,7 +10,7 @@ 4.0.0 org.apache.struts struts-annotations - 2.0.2-SNAPSHOT + 1.0-SNAPSHOT jar Struts Annotations http://struts.apache.org Modified: struts/maven/trunk/struts-annotations/src/main/java/org/apache/struts/annotations/taglib/apt/Tag.java URL: http://svn.apache.org/viewvc/struts/maven/trunk/struts-annotations/src/main/java/org/apache/struts/annotations/taglib/apt/Tag.java?view=diff&rev=493649&r1=493648&r2=493649 ============================================================================== --- struts/maven/trunk/struts-annotations/src/main/java/org/apache/struts/annotations/taglib/apt/Tag.java (original) +++ struts/maven/trunk/struts-annotations/src/main/java/org/apache/struts/annotations/taglib/apt/Tag.java Sat Jan 6 21:24:51 2007 @@ -23,6 +23,7 @@ import java.util.Collection; import java.util.HashMap; import java.util.Map; +import java.util.TreeMap; public class Tag { private String name; @@ -31,7 +32,7 @@ private String description; private boolean include = true; private String declaredType; - private Map attributes = new HashMap(); + private Map attributes = new TreeMap(); public String getDescription() { return description;