The following document contains the results of PMD's CPD 4.2.5.
| File | Line |
|---|---|
| org/jclouds/openstack/swift/domain/internal/MutableObjectInfoWithMetadataImpl.java | 110 |
| org/jclouds/openstack/swift/domain/internal/ObjectInfoImpl.java | 159 |
}
/**
* {@inheritDoc}
*/
@Override
public Date getLastModified() {
return lastModified;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((container == null) ? 0 : container.hashCode());
result = prime * result + ((name == null) ? 0 : name.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false; | |