Skip to content

Commit

Permalink
Merge pull request #28944 from izeye
Browse files Browse the repository at this point in the history
* pr/28944:
  Add public accessor for StackdriverProperties.useSemanticMetricTypes

Closes gh-28944
  • Loading branch information
snicoll committed Dec 9, 2021
2 parents 8b2b836 + 0364353 commit 646caf0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,11 @@ public void setResourceLabels(Map<String, String> resourceLabels) {
this.resourceLabels = resourceLabels;
}

boolean isUseSemanticMetricTypes() {
public boolean isUseSemanticMetricTypes() {
return this.useSemanticMetricTypes;
}

void setUseSemanticMetricTypes(boolean useSemanticMetricTypes) {
public void setUseSemanticMetricTypes(boolean useSemanticMetricTypes) {
this.useSemanticMetricTypes = useSemanticMetricTypes;
}

Expand Down

0 comments on commit 646caf0

Please sign in to comment.