#384 - Polishing.

Fix typo in exception message.
This commit is contained in:
Mark Paluch
2020-06-09 11:27:08 +02:00
parent 594df7ac17
commit bd106a95b0

View File

@@ -107,7 +107,7 @@ public class R2dbcQueryMethod extends QueryMethod {
if (hasParameterOfType(method, Sort.class)) {
throw new IllegalStateException(String.format("Method must not have Pageable *and* Sort parameter. "
+ "Use sorting capabilities on Pageble instead! Offending method: %s", method.toString()));
+ "Use sorting capabilities on Pageable instead! Offending method: %s", method.toString()));
}
}