diff options
-rw-r--r-- | gwtquery-core/src/main/java/com/google/gwt/query/client/impl/AttributeImpl.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gwtquery-core/src/main/java/com/google/gwt/query/client/impl/AttributeImpl.java b/gwtquery-core/src/main/java/com/google/gwt/query/client/impl/AttributeImpl.java index 15041a28..8add2758 100644 --- a/gwtquery-core/src/main/java/com/google/gwt/query/client/impl/AttributeImpl.java +++ b/gwtquery-core/src/main/java/com/google/gwt/query/client/impl/AttributeImpl.java @@ -211,7 +211,7 @@ public class AttributeImpl { if ("type".equalsIgnoreCase(key)) { return TypeAttrSetter.getInstance(); - } else if ("value".equals("key")){ + } else if ("value".equals(key)){ return ValueAttrSetter.getInstance(); } else if (BOOLEAN_ATTR_REGEX.test(key)) { |