Skip to content

Commit

Permalink
[hotfix][metrics] Make MessageParameter constructor protected
Browse files Browse the repository at this point in the history
  • Loading branch information
zentol committed Apr 16, 2018
1 parent 2266eb0 commit 1cd7c42
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public abstract class MessageParameter<X> {
private final String key;
private X value;

MessageParameter(String key, MessageParameterRequisiteness requisiteness) {
protected MessageParameter(String key, MessageParameterRequisiteness requisiteness) {
this.key = Preconditions.checkNotNull(key);
this.requisiteness = Preconditions.checkNotNull(requisiteness);
}
Expand Down

0 comments on commit 1cd7c42

Please sign in to comment.