Skip to content

Commit

Permalink
Changing fields to final
Browse files Browse the repository at this point in the history
Signed-off-by: vinayakj02 <vinayakv02.j@gmail.com>
  • Loading branch information
vinayakj02 authored and manusa committed Oct 11, 2022
1 parent 4e24f9a commit f09c2cb
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ public class GroupArtifactVersion {

private static final String PREFIX = "s";

private String groupId;
private String artifactId;
private String version;
private final String groupId;
private final String artifactId;
private final String version;

public GroupArtifactVersion(String groupId, String artifactId, String version) {
this.groupId = groupId;
Expand Down

0 comments on commit f09c2cb

Please sign in to comment.