*/
HashMap<String, List<Method>> byPrefix = new HashMap<String, List<Method>>();
for (Method m : methods)
{
BenchmarkHistoryChart methodAnn = m.getAnnotation(BenchmarkHistoryChart.class);
String prefix = GeneratorUtils.getFilePrefix(clazz, methodAnn.filePrefix(), c.getChartsDir());
if (!byPrefix.containsKey(prefix))
{
byPrefix.put(prefix, new ArrayList<Method>());
}
byPrefix.get(prefix).add(m);