We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7a14d6 commit a918ea4Copy full SHA for a918ea4
src/main/java/io/securecodebox/persistence/defectdojo/model/Endpoint.java
@@ -49,9 +49,6 @@ public class Endpoint extends BaseModel {
49
50
@Override
51
public boolean equalsQueryString(Map<String, Object> queryParams) {
52
- if (queryParams.containsKey("id") && queryParams.get("id").equals(this.id)) {
53
- return true;
54
- }
55
- return false;
+ return queryParams.containsKey("id") && queryParams.get("id").equals(this.id);
56
}
57
0 commit comments