Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

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 @@ -52,7 +52,7 @@ public enum CredentialTypeForMetrics {
IMPERSONATED_CREDENTIALS("imp"),
DO_NOT_SEND("dns");

private String label;
private final String label;

private CredentialTypeForMetrics(String label) {
this.label = label;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public enum Option {
LICENSES_TRUE("licensesTrue"),
INCLUDE_EMAIL("includeEmail");

private String option;
private final String option;

private Option(String option) {
this.option = option;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public enum RequestType {
METADATA_SERVER_PING("mds"),
UNTRACKED("untracked");

private String label;
private final String label;

private RequestType(String label) {
this.label = label;
Expand Down