Skip to content

Commit

Permalink
Revert Bracket changes
Browse files Browse the repository at this point in the history
  • Loading branch information
endoplasmicR authored and cyrille-leclerc committed Feb 22, 2021
1 parent 64ab195 commit 08c5148
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/org/jmxtrans/agent/StatsDOutputWriter.java
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ protected synchronized void parseTagsAndMetricsNamePrefix(Map<String, String> se
String tagsStr = ConfigurationUtils.getString(settings, SETTINGS_TAGS, "");
tags = Tag.tagsFromCommaSeparatedString(tagsStr, "=");
metricNamePrefix = ConfigurationUtils.getString(settings, SETTING_ROOT_PREFIX, getHostName().replaceAll("\\.", "_"));
} else {
}
else {
metricNamePrefix = ConfigurationUtils.getString(settings, SETTING_ROOT_PREFIX, getHostName().replaceAll("\\.", "_"));
}
}
Expand Down

0 comments on commit 08c5148

Please sign in to comment.