mirror of https://github.com/apache/druid.git
simplify code
This commit is contained in:
parent
41edec62ce
commit
824997eb43
|
@ -64,7 +64,7 @@ public class Queries
|
||||||
|
|
||||||
Preconditions.checkArgument(
|
Preconditions.checkArgument(
|
||||||
missing.isEmpty(),
|
missing.isEmpty(),
|
||||||
String.format("Missing fields [%s] for postAggregator [%s]", Joiner.on(",").join(missing), postAgg.getName())
|
"Missing fields [%s] for postAggregator [%s]", missing, postAgg.getName()
|
||||||
);
|
);
|
||||||
combinedAggNames.add(postAgg.getName());
|
combinedAggNames.add(postAgg.getName());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue