Merge pull request #12590 from izeye:public
* pr/12590: Polish contribution Make intermediate classes in type hierarchy of public class public
This commit is contained in:
commit
3cf2913580
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2012-2017 the original author or authors.
|
||||
* Copyright 2012-2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
@ -40,8 +40,9 @@ import org.springframework.util.MultiValueMap;
|
|||
* Abstract base class for nested conditions.
|
||||
*
|
||||
* @author Phillip Webb
|
||||
* @since 2.0.1
|
||||
*/
|
||||
abstract class AbstractNestedCondition extends SpringBootCondition
|
||||
public abstract class AbstractNestedCondition extends SpringBootCondition
|
||||
implements ConfigurationCondition {
|
||||
|
||||
private final ConfigurationPhase configurationPhase;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2012-2017 the original author or authors.
|
||||
* Copyright 2012-2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
|
@ -30,9 +30,9 @@ import org.springframework.ui.freemarker.FreeMarkerConfigurationFactoryBean;
|
|||
*/
|
||||
@Configuration
|
||||
@ConditionalOnNotWebApplication
|
||||
public class FreeMarkerNonWebConfiguration extends AbstractFreeMarkerConfiguration {
|
||||
class FreeMarkerNonWebConfiguration extends AbstractFreeMarkerConfiguration {
|
||||
|
||||
public FreeMarkerNonWebConfiguration(FreeMarkerProperties properties) {
|
||||
FreeMarkerNonWebConfiguration(FreeMarkerProperties properties) {
|
||||
super(properties);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -28,8 +28,9 @@ import org.springframework.util.ReflectionUtils;
|
|||
*
|
||||
* @author Anton Telechev
|
||||
* @author Phillip Webb
|
||||
* @since 2.0.1
|
||||
*/
|
||||
abstract class AbstractJsonParser implements JsonParser {
|
||||
public abstract class AbstractJsonParser implements JsonParser {
|
||||
|
||||
protected final Map<String, Object> parseMap(String json,
|
||||
Function<String, Map<String, Object>> parser) {
|
||||
|
|
|
|||
|
|
@ -41,8 +41,9 @@ import org.springframework.util.StringUtils;
|
|||
*
|
||||
* @param <T> the type of {@link Filter} to register
|
||||
* @author Phillip Webb
|
||||
* @since 2.0.1
|
||||
*/
|
||||
abstract class AbstractFilterRegistrationBean<T extends Filter>
|
||||
public abstract class AbstractFilterRegistrationBean<T extends Filter>
|
||||
extends DynamicRegistrationBean<Dynamic> {
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue