spring-projects / spring-plugin

Apache License 2.0
444 stars 119 forks source link

Move away from assertion checks without proper error message #31

Closed bclozel closed 7 years ago

bclozel commented 7 years ago

Since SPR-15196, Assert.notNull(Object) and other single arg methods are gone from Spring Framework 5.x, replaced with String or Supplier<String> as second arguments.

This method is used in AbstractTypeAwareSupport. This is unfortunately breaking the Spring Boot build. See spring-projects/spring-boot#8140

odrotbohm commented 7 years ago

That should be fixed.