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
5bfc6a50
Commit
5bfc6a50
authored
Jul 05, 2016
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove accidental usage of Type.getTypeName() which is a Java 8 API
Closes gh-6325
parent
4b91965d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
ConfigurationPropertiesReportEndpoint.java
...tuate/endpoint/ConfigurationPropertiesReportEndpoint.java
+2
-2
No files found.
spring-boot-actuator/src/main/java/org/springframework/boot/actuate/endpoint/ConfigurationPropertiesReportEndpoint.java
View file @
5bfc6a50
...
@@ -308,8 +308,8 @@ public class ConfigurationPropertiesReportEndpoint
...
@@ -308,8 +308,8 @@ public class ConfigurationPropertiesReportEndpoint
}
}
private
boolean
isReadable
(
BeanDescription
beanDesc
,
BeanPropertyWriter
writer
)
{
private
boolean
isReadable
(
BeanDescription
beanDesc
,
BeanPropertyWriter
writer
)
{
String
parentType
=
beanDesc
.
getType
().
getRawClass
().
getName
();
Class
<?>
parentType
=
beanDesc
.
getType
().
getRawClass
();
String
type
=
writer
.
getType
().
getTypeName
();
Class
<?>
type
=
writer
.
getType
().
getRawClass
();
AnnotatedMethod
setter
=
findSetter
(
beanDesc
,
writer
);
AnnotatedMethod
setter
=
findSetter
(
beanDesc
,
writer
);
// If there's a setter, we assume it's OK to report on the value,
// If there's a setter, we assume it's OK to report on the value,
// similarly, if there's no setter but the package names match, we assume
// similarly, if there's no setter but the package names match, we assume
...
...
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