From: Manolo Carrasco Date: Tue, 6 Sep 2011 05:34:52 +0000 (+0000) Subject: typo makes the test always false X-Git-Tag: release-1.3.2~218 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d02bdc4639c7971481decd4b28428ecf8c7455bf;p=gwtquery.git typo makes the test always false --- 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)) {