removed unused subclass

This commit is contained in:
Tim Chamberlain
2023-05-30 14:57:34 -05:00
parent ca1cc853fc
commit 6455171cee

View File

@ -707,20 +707,4 @@ class BaseAPIActionUtilTest extends BaseTest
return (new GetAction().execute(getInput));
}
/*******************************************************************************
** subclass of base api action utils that can be used to test overriding methods
*******************************************************************************/
private class BaseAPIActionUtilSubclass extends BaseAPIActionUtil
{
/*******************************************************************************
**
*******************************************************************************/
protected boolean shouldBeRetryableServerErrorException(QHttpResponse qResponse)
{
return (false);
}
}
}