Suppress "unused" warnings in tests

This commit is contained in:
Sam Brannen
2022-09-26 14:27:32 +02:00
parent 2872282d75
commit a975b9d5da
3 changed files with 14 additions and 8 deletions

View File

@@ -54,6 +54,7 @@ public class BeanUtilsBenchmark {
static class TestClass1{
};
@SuppressWarnings("unused")
static class TestClass2 {
private final int value1;
private final String value2;
@@ -63,4 +64,5 @@ public class BeanUtilsBenchmark {
this.value2 = value2;
}
}
}