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
9fb42905
Commit
9fb42905
authored
Jan 22, 2018
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #11674 from izeye:platform-specifc-line-separator
* pr/11674: Use the platform-specific line separator
parents
34b19de6
a0f6abff
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
InvalidConfigurationPropertyValueFailureAnalyzer.java
...zer/InvalidConfigurationPropertyValueFailureAnalyzer.java
+3
-2
No files found.
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/diagnostics/analyzer/InvalidConfigurationPropertyValueFailureAnalyzer.java
View file @
9fb42905
...
@@ -94,7 +94,8 @@ class InvalidConfigurationPropertyValueFailureAnalyzer
...
@@ -94,7 +94,8 @@ class InvalidConfigurationPropertyValueFailureAnalyzer
private
void
appendReason
(
StringBuilder
message
,
private
void
appendReason
(
StringBuilder
message
,
InvalidConfigurationPropertyValueException
cause
)
{
InvalidConfigurationPropertyValueException
cause
)
{
if
(
StringUtils
.
hasText
(
cause
.
getReason
()))
{
if
(
StringUtils
.
hasText
(
cause
.
getReason
()))
{
message
.
append
(
" Validation failed for the following reason:\n\n"
);
message
.
append
(
String
.
format
(
" Validation failed for the following "
+
"reason:%n%n"
));
message
.
append
(
cause
.
getReason
());
message
.
append
(
cause
.
getReason
());
}
}
else
{
else
{
...
@@ -114,7 +115,7 @@ class InvalidConfigurationPropertyValueFailureAnalyzer
...
@@ -114,7 +115,7 @@ class InvalidConfigurationPropertyValueFailureAnalyzer
message
.
append
(
"\t- In '"
+
other
.
getPropertySource
()
+
"'"
);
message
.
append
(
"\t- In '"
+
other
.
getPropertySource
()
+
"'"
);
message
.
append
(
" with the value '"
+
other
.
getValue
()
+
"'"
);
message
.
append
(
" with the value '"
+
other
.
getValue
()
+
"'"
);
other
.
appendOrigin
(
message
);
other
.
appendOrigin
(
message
);
message
.
append
(
".\n"
);
message
.
append
(
String
.
format
(
".%n"
)
);
}
}
}
}
}
}
...
...
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