Skip to content
This repository was archived by the owner on Jan 31, 2025. It is now read-only.

Commit

Permalink
BC-7234 - fix final
Browse files Browse the repository at this point in the history
  • Loading branch information
mamutmk5 authored May 23, 2024
1 parent a1b81df commit edc1cd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/de/svs/doido/mongo/dto/Configmap.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
public final class Configmap {
@Getter
@Setter
private String name = "";
private final String name = "";

@Getter
private String uri = "";
private final String uri = "";

public void setUri(String uriIn) {
UrlValidator urlValidator = new UrlValidator( UrlValidator.ALLOW_ALL_SCHEMES|UrlValidator.ALLOW_LOCAL_URLS );
Expand Down

0 comments on commit edc1cd8

Please sign in to comment.