Skip to content

Commit

Permalink
removed surrounding quotation marks ("") from metric names in arithme…
Browse files Browse the repository at this point in the history
…tic expressions
  • Loading branch information
p-goetz authored and bsjaekel committed Jan 18, 2013
1 parent d1f032d commit 6843fb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tsd/client/MetricFormulaForm.java
Expand Up @@ -80,7 +80,7 @@ public String buildQueryString(final List<String> queryMetricNames) {
"[^\\d]", "")) - 1;
final String queryMetricName = queryMetricNames.get(metricIndex);
expression = metricExpressionUtils.replaceOperands(expression,
metricName, "\"" + queryMetricName + "\"");
metricName, queryMetricName);
}

if (expression != null) {
Expand Down

0 comments on commit 6843fb2

Please sign in to comment.