Browse Source

Fix assertion locations

Closes gh-11171
pull/11181/head
Johnny Lim 8 years ago committed by Stephane Nicoll
parent
commit
decf2dc1b7
  1. 4
      spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/reactive/context/AnnotationConfigReactiveWebServerApplicationContext.java
  2. 4
      spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/servlet/context/AnnotationConfigServletWebServerApplicationContext.java

4
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/reactive/context/AnnotationConfigReactiveWebServerApplicationContext.java

@ -171,9 +171,9 @@ public class AnnotationConfigReactiveWebServerApplicationContext @@ -171,9 +171,9 @@ public class AnnotationConfigReactiveWebServerApplicationContext
* @see #refresh()
*/
public final void register(Class<?>... annotatedClasses) {
this.annotatedClasses = annotatedClasses;
Assert.notEmpty(annotatedClasses,
"At least one annotated class must be specified");
this.annotatedClasses = annotatedClasses;
}
/**
@ -184,8 +184,8 @@ public class AnnotationConfigReactiveWebServerApplicationContext @@ -184,8 +184,8 @@ public class AnnotationConfigReactiveWebServerApplicationContext
* @see #refresh()
*/
public final void scan(String... basePackages) {
this.basePackages = basePackages;
Assert.notEmpty(basePackages, "At least one base package must be specified");
this.basePackages = basePackages;
}
@Override

4
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/servlet/context/AnnotationConfigServletWebServerApplicationContext.java

@ -169,9 +169,9 @@ public class AnnotationConfigServletWebServerApplicationContext @@ -169,9 +169,9 @@ public class AnnotationConfigServletWebServerApplicationContext
* @see #refresh()
*/
public final void register(Class<?>... annotatedClasses) {
this.annotatedClasses = annotatedClasses;
Assert.notEmpty(annotatedClasses,
"At least one annotated class must be specified");
this.annotatedClasses = annotatedClasses;
}
/**
@ -182,8 +182,8 @@ public class AnnotationConfigServletWebServerApplicationContext @@ -182,8 +182,8 @@ public class AnnotationConfigServletWebServerApplicationContext
* @see #refresh()
*/
public final void scan(String... basePackages) {
this.basePackages = basePackages;
Assert.notEmpty(basePackages, "At least one base package must be specified");
this.basePackages = basePackages;
}
@Override

Loading…
Cancel
Save