Skip to content

Commit 9843888

Browse files
committed
Merge branch '2.2.x' into 2.3.x
Closes gh-22059
2 parents 73aa8f1 + bf04bab commit 9843888

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

spring-boot-project/spring-boot-tools/spring-boot-configuration-processor/src/test/java/org/springframework/boot/configurationsample/fieldvalues/FieldValues.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public class FieldValues {
109109

110110
private Integer[] integerArray = new Integer[] { 42, 24 };
111111

112-
private FieldValues[] unknownArray = new FieldValues[] { new FieldValues() };
112+
private UnknownElementType[] unknownArray = new UnknownElementType[] { new UnknownElementType() };
113113

114114
private Duration durationNone;
115115

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
/*
2+
* Copyright 2012-2020 the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
package org.springframework.boot.configurationsample.fieldvalues;
18+
19+
/**
20+
* Type used to check unknown array element types.
21+
*
22+
* @author Phillip Webb
23+
*/
24+
public class UnknownElementType {
25+
26+
}

0 commit comments

Comments
 (0)