}
}
}
private static ImmutableSet<String> getVmOptions(Class<?> benchmarkClass) {
VmOptions annotation = benchmarkClass.getAnnotation(VmOptions.class);
return (annotation == null)
? ImmutableSet.<String>of()
: ImmutableSet.copyOf(annotation.value());
}