Merge pull request #207 from benjaminbrent/bugfix-missing-synchronized-keyword-in-measurements

Synchronize Measurements.getSummary() method to prevent ConcurrentModificationExceptions
This commit is contained in:
Sean Busbey 2015-05-18 08:58:18 -05:00
Родитель 5ab241210a f1fc92237b
Коммит 99c38369c6
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -154,7 +154,7 @@ public class Measurements
/**
* Return a one line summary of the measurements.
*/
public String getSummary()
public synchronized String getSummary()
{
String ret="";
for (OneMeasurement m : data.values())