jdk/src/share/classes/javax/management/MBeanOperationInfo.java
changeset 20174 360791181f66
parent 19852 f8e5a6c5d379
child 23010 6dadb192ad81
--- a/jdk/src/share/classes/javax/management/MBeanOperationInfo.java	Tue Sep 17 07:56:56 2013 -0400
+++ b/jdk/src/share/classes/javax/management/MBeanOperationInfo.java	Wed Sep 18 08:51:23 2013 +0200
@@ -294,12 +294,12 @@
         if (!(o instanceof MBeanOperationInfo))
             return false;
         MBeanOperationInfo p = (MBeanOperationInfo) o;
-        return (p.getName().equals(getName()) &&
-                p.getReturnType().equals(getReturnType()) &&
-                p.getDescription().equals(getDescription()) &&
+        return (Objects.equals(p.getName(), getName()) &&
+                Objects.equals(p.getReturnType(), getReturnType()) &&
+                Objects.equals(p.getDescription(), getDescription()) &&
                 p.getImpact() == getImpact() &&
                 Arrays.equals(p.fastGetSignature(), fastGetSignature()) &&
-                p.getDescriptor().equals(getDescriptor()));
+                Objects.equals(p.getDescriptor(), getDescriptor()));
     }
 
     /* We do not include everything in the hashcode.  We assume that