Suppress a benign warning about an unused parameter

This commit is contained in:
Ben Liblit 2017-07-18 15:20:59 -05:00 committed by Manu Sridharan
parent d3c4200bc3
commit d5e6da89ae
1 changed files with 1 additions and 1 deletions

View File

@ -163,7 +163,7 @@ public class DemandCastChecker {
return fullDemandPointsTo;
}
private static String getExclusions(String benchName) {
private static String getExclusions(@SuppressWarnings("unused") String benchName) {
return CallGraphTestUtil.REGRESSION_EXCLUSIONS;
}