Skip to content

Commit

Permalink
use put when adding a field to a series point
Browse files Browse the repository at this point in the history
  • Loading branch information
gpolitis committed Jun 14, 2019
1 parent 0c63ac2 commit f63526a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public TimeSeriesPoint(Map<String, Object> m)
*/
public TimeSeriesPoint addField(String key, Object value)
{
super.put(key, value);
put(key, value);
return this;
}
}
Expand Down

0 comments on commit f63526a

Please sign in to comment.