[Schmitzm-commits] r1458 - trunk/schmitzm-core/src/main/java/de/schmitzm/lang

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Thu Jan 27 17:31:36 CET 2011


Author: mojays
Date: 2011-01-27 17:31:36 +0100 (Thu, 27 Jan 2011)
New Revision: 1458

Modified:
   trunk/schmitzm-core/src/main/java/de/schmitzm/lang/SortedProperties.java
Log:


Modified: trunk/schmitzm-core/src/main/java/de/schmitzm/lang/SortedProperties.java
===================================================================
--- trunk/schmitzm-core/src/main/java/de/schmitzm/lang/SortedProperties.java	2011-01-27 16:29:15 UTC (rev 1457)
+++ trunk/schmitzm-core/src/main/java/de/schmitzm/lang/SortedProperties.java	2011-01-27 16:31:36 UTC (rev 1458)
@@ -10,19 +10,19 @@
  * Provides the same functionality like the standard JDK {@link Properties},
  * exception that {@link #keys()} and {@link #keySet()} methods
  * return sorted sets, so that the internal {@code store(..)}-methods
- * automatically write the properties file in a sorted way.
+ * automatically write the properties file in a sorted way.<br>
+ * <br>
+ * <b>Note:</b><br>
+ * In my mind the original {@link Properties} already stores
+ * the property files an a sorted way. But since a few days/weeks
+ * it seems that it does not!
  * @author <a href="mailto:martin.schmitz at koeln.de">Martin Schmitz</a>
  */
 public class SortedProperties extends Properties {
 
   /**
    * Creates a new {@link TreeSet} for the internal key set and
-   * returns an {@link Enumeration} for this {@link TreeSet}.<br>
-   * <br>
-   * <b>Note:</b>
-   * In my mind the original {@link Properties} already stores
-   * the property files an a sorted way. But since a few days/weeks
-   * it seems that it does not!
+   * returns an {@link Enumeration} for this {@link TreeSet}.
    */
   @Override
   public Enumeration<Object> keys() {



More information about the Schmitzm-commits mailing list