< prev index next >

src/java.xml/share/classes/com/sun/xml/internal/stream/events/AttributeImpl.java

Print this page
rev 52881 : 8214971: Replace use of string.equals("") with isEmpty()
Reviewed-by: jlaskey, prappo, lancea, dfuchs, redestad

@@ -83,11 +83,11 @@
 
     public AttributeImpl(QName qname, String value, String nonNormalizedvalue, String type, boolean isSpecified) {
         init();
         fQName = qname ;
         fValue = value ;
-        if(type != null && !type.equals(""))
+        if(type != null && !type.isEmpty())
             fAttributeType = type;
 
         fNonNormalizedvalue = nonNormalizedvalue;
         fIsSpecified = isSpecified ;
 
< prev index next >