changeset 1510:2d8028b133d8

Fix mistake in Range's javadoc Reviewed-by: neugens Review-thread: http://icedtea.classpath.org/pipermail/thermostat/2014-September/011030.html
author Omair Majid <omajid@redhat.com>
date Tue, 07 Oct 2014 12:12:52 -0400
parents bcb526aa403b
children 57d32b9b7897
files common/core/src/main/java/com/redhat/thermostat/common/model/Range.java
diffstat 1 files changed, 0 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/common/core/src/main/java/com/redhat/thermostat/common/model/Range.java	Tue Oct 07 13:41:39 2014 -0400
+++ b/common/core/src/main/java/com/redhat/thermostat/common/model/Range.java	Tue Oct 07 12:12:52 2014 -0400
@@ -84,7 +84,6 @@
         return Objects.equals(this.min, other.min) && Objects.equals(this.max, other.max);
     }
 
-    /** Note: It's not a good idea to use mutable values (like {@code Range}) as a hash */
     @Override
     public int hashCode() {
         return Objects.hash(min, max);