[hornetq-commits] JBoss hornetq SVN: r12168 - trunk/hornetq-commons/src/main/java/org/hornetq/utils.

do-not-reply at jboss.org do-not-reply at jboss.org
Thu Feb 23 04:37:40 EST 2012


Author: borges
Date: 2012-02-23 04:37:40 -0500 (Thu, 23 Feb 2012)
New Revision: 12168

Modified:
   trunk/hornetq-commons/src/main/java/org/hornetq/utils/TypedProperties.java
Log:
Remove javadoc warning. Reference is already present in Javadoc text.

Modified: trunk/hornetq-commons/src/main/java/org/hornetq/utils/TypedProperties.java
===================================================================
--- trunk/hornetq-commons/src/main/java/org/hornetq/utils/TypedProperties.java	2012-02-23 09:37:21 UTC (rev 12167)
+++ trunk/hornetq-commons/src/main/java/org/hornetq/utils/TypedProperties.java	2012-02-23 09:37:40 UTC (rev 12168)
@@ -28,16 +28,15 @@
 import java.util.Collections;
 import java.util.HashMap;
 import java.util.Map;
-import java.util.Set;
 import java.util.Map.Entry;
+import java.util.Set;
 
 import org.hornetq.api.core.HornetQBuffer;
 import org.hornetq.api.core.PropertyConversionException;
 import org.hornetq.api.core.SimpleString;
-import org.hornetq.core.logging.Logger;
 
 /**
- * 
+ *
  * Property Value Conversion.
  * <p>
  * This implementation follows section 3.5.4 of the <i>Java Message Service<i> specification
@@ -46,11 +45,9 @@
  * TODO - should have typed property getters and do conversions herein
  * @author <a href="mailto:tim.fox at jboss.com">Tim Fox</a>
  * @author <a href="mailto:clebert.suconic at jboss.com">Clebert Suconic</a>
- * @see <i>Java Message Service<i> specification (Version 1.1 April 12, 2002), section 3.5.4.
  */
-public class TypedProperties
+public final class TypedProperties
 {
-   private static final Logger log = Logger.getLogger(TypedProperties.class);
 
    private static final SimpleString HQ_PROPNAME = new SimpleString("_HQ_");
 
@@ -137,7 +134,7 @@
       checkCreateProperties();
       doPutValue(key, value == null ? new NullValue() : new StringValue(value));
    }
-   
+
    public void putNullValue(final SimpleString key)
    {
       checkCreateProperties();



More information about the hornetq-commits mailing list