File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
errors/src/test/java/com/palantir/conjure/java/api/errors Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -30,19 +30,19 @@ public final class QosExceptionTest {
3030
3131 @ Test
3232 public void testVisitorSanity () throws Exception {
33- QosException .Visitor <Class > visitor = new QosException .Visitor <Class >() {
33+ QosException .Visitor <Class <?>> visitor = new QosException .Visitor <>() {
3434 @ Override
35- public Class visit (QosException .Throttle exception ) {
35+ public Class <?> visit (QosException .Throttle exception ) {
3636 return exception .getClass ();
3737 }
3838
3939 @ Override
40- public Class visit (QosException .RetryOther exception ) {
40+ public Class <?> visit (QosException .RetryOther exception ) {
4141 return exception .getClass ();
4242 }
4343
4444 @ Override
45- public Class visit (QosException .Unavailable exception ) {
45+ public Class <?> visit (QosException .Unavailable exception ) {
4646 return exception .getClass ();
4747 }
4848 };
You can’t perform that action at this time.
0 commit comments