Removed DOCUMENT ME comments that were generated and applied source code
[utils] / system / spring / src / main / java / org / wamblee / system / spring / PropertySetter.java
index c21fe9ce258be7a75429538367d7430c30802ead..bdd5e2c21736830a78bf23005a02adc397a9e3a8 100644 (file)
@@ -21,30 +21,24 @@ import org.springframework.beans.factory.config.PropertyPlaceholderConfigurer;
 
 import java.util.Properties;
 
-
 /**
- * Bean that provides postprocessing of the bean factory based on  a given
- * set of properties.
- *
+ * Bean that provides postprocessing of the bean factory based on a given set of
+ * properties.
+ * 
  * @author Erik Brakkee
  */
 class PropertySetter extends PropertyPlaceholderConfigurer {
-/**
-         * Constructs the property setter. 
-         * @param aProps Properties. 
-         */
+    /**
+     * Constructs the property setter.
+     * 
+     * @param aProps
+     *            Properties.
+     */
     public PropertySetter(Properties aProps) {
         String propFile = createPropertyFile(aProps);
         setLocation(new StringResource(propFile));
     }
 
-    /**
-     * DOCUMENT ME!
-     *
-     * @param aProps DOCUMENT ME!
-     *
-     * @return DOCUMENT ME!
-     */
     public static String createPropertyFile(Properties aProps) {
         StringBuffer buf = new StringBuffer();