~ubuntu-branches/ubuntu/maverick/ant/maverick

« back to all changes in this revision

Viewing changes to src/main/org/apache/tools/ant/taskdefs/optional/EchoProperties.java

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2008-09-30 14:47:45 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20080930144745-0x8uzivd9t15dua3
Tags: 1.7.1-0ubuntu1
* New upstream version (bug fix release).
  - mainly a bugfix release.
  - has extended support for Java6 features.
  - <script> now has support for JavaFX.
  - release notes: http://apache.linux-mirror.org/ant/README.html
* Remove debian/patches/05_ant-bug433444.patch. Obsoleted.

Show diffs side-by-side

added added

removed removed

Lines of Context:
387
387
        final List keyList = new ArrayList(allProps.keySet());
388
388
        Collections.sort(keyList);
389
389
        Properties props = new Properties() {
 
390
            private static final long serialVersionUID = 5090936442309201654L;
390
391
            public Enumeration keys() {
391
392
                return CollectionUtils.asEnumeration(keyList.iterator());
392
393
            }
421
422
    /**
422
423
     * a tuple for the sort list.
423
424
     */
424
 
    private static class Tuple implements Comparable {
 
425
    private static final class Tuple implements Comparable {
425
426
        private String key;
426
427
        private String value;
427
428