PMT-4: Fix Static Analysis Problems
Some checks failed
Quality Check / Validate OAS (push) Successful in 51s
Quality Check / Validate OAS (pull_request) Successful in 1m3s
Quality Check / Linting (push) Failing after 1m39s
Quality Check / Linting (pull_request) Failing after 1m45s
Quality Check / Testing (push) Successful in 2m11s
Quality Check / Static Analysis (push) Successful in 2m17s
Quality Check / Testing (pull_request) Successful in 2m8s
Quality Check / Static Analysis (pull_request) Successful in 2m13s

Signed-off-by: Dominik Säume <Dominik.Saeume@hmmh.de>
This commit is contained in:
Dominik Säume 2024-10-21 08:22:07 +02:00
parent b558120b70
commit 63ce5526b4
Signed by: SZUT-Dominik
GPG key ID: 67D15BB250B41E7C
2 changed files with 5 additions and 0 deletions

View file

@ -12,6 +12,7 @@ import java.io.Serializable;
@NoArgsConstructor @NoArgsConstructor
@AllArgsConstructor @AllArgsConstructor
public class AllocationId implements Serializable { public class AllocationId implements Serializable {
private static final long serialVersionUID = 1L;
private Long projectId; private Long projectId;
private Long employeeId; private Long employeeId;
} }

View file

@ -4,6 +4,10 @@
<Class name="de.hmmh.pmt.employee.ApiClientFactory"/> <Class name="de.hmmh.pmt.employee.ApiClientFactory"/>
<Bug code="M,V,EI"/> <Bug code="M,V,EI"/>
</Match> </Match>
<Match>
<Class name="de.hmmh.pmt.db.Allocation"/>
<Bug code="M,V,EI,EI2"/>
</Match>
<Match> <Match>
<!--Ignore Auto Generated Code --> <!--Ignore Auto Generated Code -->
<Source name="~.*build/.*"/> <Source name="~.*build/.*"/>