Skip to content

Commit 9d06d22

Browse files
committed
Merge branch '2.0.x' into 2.1.x
2 parents f46894d + affdbee commit 9d06d22

File tree

4 files changed

+7
-1
lines changed

4 files changed

+7
-1
lines changed

spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/neo4j/Neo4jHealthIndicatorTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2012-2017 the original author or authors.
2+
* Copyright 2012-2019 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

spring-boot-project/spring-boot-tools/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationsample/generic/AbstractGenericProperties.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@
2222
/**
2323
* A base properties class with generics.
2424
*
25+
* @param <A> name type
26+
* @param <B> mapping key type
27+
* @param <C> mapping value type
2528
* @author Stephane Nicoll
2629
*/
2730
public class AbstractGenericProperties<A, B, C> {

spring-boot-project/spring-boot-tools/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationsample/generic/AbstractIntermediateGenericProperties.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
/**
2020
* An intermediate layer that resolves some of the generics from the parent but not all.
2121
*
22+
* @param <C> mapping value type
2223
* @author Stephane Nicoll
2324
*/
2425
public abstract class AbstractIntermediateGenericProperties<C>

spring-boot-project/spring-boot-tools/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationsample/generic/UnresolvedGenericProperties.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
/**
2222
* Properties with unresolved generic information.
2323
*
24+
* @param <B> mapping key type
25+
* @param <C> mapping value type
2426
* @author Stephane Nicoll
2527
*/
2628
@ConfigurationProperties("generic")

0 commit comments

Comments
 (0)