Skip to content

Commit 5b92a02

Browse files
committed
Merge branch '1.5.x'
2 parents 2bdbe34 + 934d336 commit 5b92a02

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

spring-boot-devtools/src/main/java/org/springframework/boot/devtools/autoconfigure/DevToolsDataSourceAutoConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ private enum InMemoryDatabase {
116116

117117
H2("jdbc:h2:mem:", "org.h2.Driver", "org.h2.jdbcx.JdbcDataSource"),
118118

119-
HQSQLDB("jdbc:hsqldb:mem:", "org.hsqldb.jdbcDriver",
119+
HSQLDB("jdbc:hsqldb:mem:", "org.hsqldb.jdbcDriver",
120120
"org.hsqldb.jdbc.JDBCDriver",
121121
"org.hsqldb.jdbc.pool.JDBCXADataSource");
122122

spring-boot-devtools/src/test/java/org/springframework/boot/devtools/autoconfigure/DevToolsPooledDataSourceAutoConfigurationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public void h2ServerIsNotShutdown() throws SQLException {
6969
}
7070

7171
@Test
72-
public void inMemoryh2IsShutdown() throws SQLException {
72+
public void inMemoryH2IsShutdown() throws SQLException {
7373
ConfigurableApplicationContext context = createContext("org.h2.Driver",
7474
"jdbc:h2:mem:test", DataSourceAutoConfiguration.class,
7575
DataSourceSpyConfiguration.class);

spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1156,7 +1156,7 @@ content into your application; rather pick only the properties that you need.
11561156
management.shell.ssh.idle-timeout = # Number of milliseconds after which unused connections are closed.
11571157
management.shell.ssh.key-path= # Path to the SSH server key.
11581158
management.shell.ssh.port=2000 # SSH port.
1159-
management.shell.telnet.enabled=false # Enable CRaSH telnet support. Enabled by default if the TelnetPlugin is available.
1159+
management.shell.telnet.enabled=false # Enable CRaSH telnet support. Enabled by default if the TelnetPlugin is available.
11601160
management.shell.telnet.port=5000 # Telnet port.
11611161
11621162
# TRACING ({sc-spring-boot-actuator}/trace/TraceProperties.{sc-ext}[TraceProperties])

spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6170,7 +6170,7 @@ might not actually appear on the running application classpath. You can also use
61706170

61716171
[TIP]
61726172
====
6173-
If you are using `@ConditionalOnClass` or `@ConditionalOnMissingClass` as apart of a
6173+
If you are using `@ConditionalOnClass` or `@ConditionalOnMissingClass` as a part of a
61746174
meta-annotation to compose your own composed annotations you must use `name` as referring
61756175
to the class in such a case is not handled.
61766176
====

spring-boot-test-autoconfigure/src/main/java/org/springframework/boot/test/autoconfigure/data/mongo/DataMongoTypeExcludeFilter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class DataMongoTypeExcludeFilter extends AnnotationCustomizableTypeExcludeFilter
3333

3434
private final DataMongoTest annotation;
3535

36-
DataMongoTypeExcludeFilter(final Class<?> testClass) {
36+
DataMongoTypeExcludeFilter(Class<?> testClass) {
3737
this.annotation = AnnotatedElementUtils.getMergedAnnotation(testClass,
3838
DataMongoTest.class);
3939
}

0 commit comments

Comments
 (0)