You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When migrating from JAX-RS to Spring inner class HttpStatus.Series is imported but not used everywhere. Series custom = HttpStatus.Series.resolve(code); could be Series custom = Series.resolve(code); instead.
To Reproduce
Steps to reproduce the behavior:
Replace HttpStatus.Series with Series in expected code of ResponseStatusFamilyTest.enumConstantsTest()
Run test
Expected behavior
Inner classes are used when imported
The text was updated successfully, but these errors were encountered:
Describe the bug
When migrating from JAX-RS to Spring inner class
HttpStatus.Series
is imported but not used everywhere.Series custom = HttpStatus.Series.resolve(code);
could beSeries custom = Series.resolve(code);
instead.To Reproduce
Steps to reproduce the behavior:
HttpStatus.Series
withSeries
in expected code ofResponseStatusFamilyTest.enumConstantsTest()
Expected behavior
Inner classes are used when imported
The text was updated successfully, but these errors were encountered: