Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
187c4d72
Commit
187c4d72
authored
Jan 30, 2018
by
Phillip Webb
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch '1.5.x'
parents
ef49c029
604ec075
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
9 deletions
+11
-9
spring
...ect/spring-boot-cli/src/main/executablecontent/bin/spring
+4
-0
TypeUtils.java
...pringframework/boot/configurationprocessor/TypeUtils.java
+6
-8
DatabaseDriver.java
...in/java/org/springframework/boot/jdbc/DatabaseDriver.java
+1
-1
No files found.
spring-boot-project/spring-boot-cli/src/main/executablecontent/bin/spring
View file @
187c4d72
...
@@ -8,6 +8,10 @@ case "`uname`" in
...
@@ -8,6 +8,10 @@ case "`uname`" in
cygwin
=
true
cygwin
=
true
;;
;;
MINGW
*
)
cygwin
=
true
;;
Darwin
*
)
Darwin
*
)
darwin
=
true
darwin
=
true
;;
;;
...
...
spring-boot-project/spring-boot-tools/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/TypeUtils.java
View file @
187c4d72
...
@@ -192,14 +192,12 @@ class TypeUtils {
...
@@ -192,14 +192,12 @@ class TypeUtils {
if
(
type
.
getTypeArguments
().
isEmpty
())
{
if
(
type
.
getTypeArguments
().
isEmpty
())
{
return
qualifiedName
;
return
qualifiedName
;
}
}
else
{
StringBuilder
name
=
new
StringBuilder
();
StringBuilder
name
=
new
StringBuilder
();
name
.
append
(
qualifiedName
);
name
.
append
(
qualifiedName
);
name
.
append
(
"<"
).
append
(
type
.
getTypeArguments
().
stream
()
name
.
append
(
"<"
).
append
(
type
.
getTypeArguments
().
stream
()
.
map
(
TypeMirror:
:
toString
).
collect
(
Collectors
.
joining
(
","
)))
.
map
(
TypeMirror:
:
toString
).
collect
(
Collectors
.
joining
(
","
)))
.
append
(
">"
);
.
append
(
">"
);
return
name
.
toString
();
return
name
.
toString
();
}
}
}
@Override
@Override
...
...
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/jdbc/DatabaseDriver.java
View file @
187c4d72
/*
/*
* Copyright 2012-201
7
the original author or authors.
* Copyright 2012-201
8
the original author or authors.
*
*
* Licensed under the Apache License, Version 2.0 (the "License");
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* you may not use this file except in compliance with the License.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment