DATACMNS-985 - Remove references to single-argument assertion methods.

This commit is contained in:
Christoph Strobl
2017-01-31 11:31:30 +01:00
committed by Oliver Gierke
parent 49817278b7
commit 3e048a6dca
55 changed files with 116 additions and 116 deletions

View File

@@ -82,7 +82,7 @@ public class AuditingHandler implements InitializingBean {
*/
public void setAuditorAware(final AuditorAware<?> auditorAware) {
Assert.notNull(auditorAware);
Assert.notNull(auditorAware, "AuditorAware must not be null!");
this.auditorAware = auditorAware;
}