Removed DOCUMENT ME comments that were generated and applied source code
[utils] / system / spring / src / test / java / org / wamblee / system / spring / ConfiguredPropertiesTest.java
index 05043e37890d9ae26d7c6764b3e1cde55a8c3289..b22ca9f8fbba30f87479f6ac6e75fadad88641b5 100644 (file)
@@ -21,26 +21,19 @@ import java.io.IOException;
 
 import java.util.Properties;
 
-
 /**
- * DOCUMENT ME!
- *
+ * 
  * @author $author$
  * @version $Revision$
  */
 public class ConfiguredPropertiesTest extends TestCase {
-    /**
-     * DOCUMENT ME!
-     *
-     * @throws IOException DOCUMENT ME!
-     */
     public void testProps() throws IOException {
         Properties props = new Properties();
         props.put("x", "y");
         props.put("a", "b");
 
         ConfiguredProperties props2 = new ConfiguredProperties(PropertySetter
-                .createPropertyFile(props));
+            .createPropertyFile(props));
 
         assertEquals(props.size(), props2.size());
         assertEquals(props.get("x"), props2.get("x"));