From d02bdc4639c7971481decd4b28428ecf8c7455bf Mon Sep 17 00:00:00 2001 From: Manolo Carrasco Date: Tue, 6 Sep 2011 05:34:52 +0000 Subject: [PATCH] typo makes the test always false --- .../java/com/google/gwt/query/client/impl/AttributeImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) { -- 2.39.5