public boolean equals()

in src/main/java/org/apache/openejb/cts/deploy/StandardDeployment14.java [829:840]


    public boolean equals(Object obj) {
      SerializableTarget that = null;
      boolean result = false;
      if (this instanceof SerializableTarget) {
        that = (SerializableTarget) obj;
        result = (description == null) ? that.getDescription() == null
            : description.equals(that.getDescription());
        result = result && ((name == null) ? that.getName() == null
            : name.equals(that.getName()));
      }
      return result;
    }