Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
*
* @author Brian Clozel
*/
class AbstractFreeMarkerConfiguration {
abstract class AbstractFreeMarkerConfiguration {

private final FreeMarkerProperties properties;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* @author Madhura Bhave
* @author Andy Wilkinson
*/
class AbstractSessionCondition extends SpringBootCondition {
abstract class AbstractSessionCondition extends SpringBootCondition {

private final WebApplicationType webApplicationType;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public void annotationAttributesOverridePropertiesFile() throws Exception {
assertThat(this.value).isEqualTo(123);
}

protected static class AbstractConfig {
protected static abstract class AbstractConfig {

@Value("${server.port:8080}")
private int port = 8080;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public void validateWebApplicationContextIsSet() {
WebApplicationContextUtils.getWebApplicationContext(this.servletContext));
}

protected static class AbstractConfig {
protected static abstract class AbstractConfig {

@Value("${server.port:8080}")
private int port = 8080;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
*
* @author Andy Wilkinson
*/
public class AbstractExecutableArchiveLauncherTests {
public abstract class AbstractExecutableArchiveLauncherTests {

@Rule
public TemporaryFolder temp = new TemporaryFolder();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
* @author Brian Clozel
* @since 2.0.0
*/
public class AbstractConfigurableWebServerFactory
public abstract class AbstractConfigurableWebServerFactory
implements ConfigurableWebServerFactory {

private int port = 8080;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1277,7 +1277,7 @@ static class RefreshFailureException extends RuntimeException {

}

static class AbstractTestRunner implements ApplicationContextAware, Ordered {
static abstract class AbstractTestRunner implements ApplicationContextAware, Ordered {

private final String[] expectedBefore;

Expand Down