Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -66,19 +66,6 @@ public class TemplateOVFPropertyResponse extends BaseResponse {
@Param(description = "The ovf property category")
private String category;

@Override
public boolean equals(Object other) {
if (!(other instanceof TemplateOVFPropertyResponse)) {
return false;
}
return key != null && key.equals(((TemplateOVFPropertyResponse)other).key);
}

@Override
public int hashCode() {
return key.hashCode();
}

public String getKey() {
return key;
}
Expand Down
Loading