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
a601bc86
Commit
a601bc86
authored
Aug 18, 2018
by
dreis2211
Committed by
Stephane Nicoll
Aug 19, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused method in TypeUtils
Closes gh-14130
parent
3ad3cfd7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
10 deletions
+0
-10
TypeUtils.java
...pringframework/boot/configurationprocessor/TypeUtils.java
+0
-10
No files found.
spring-boot-project/spring-boot-tools/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/TypeUtils.java
View file @
a601bc86
...
...
@@ -128,16 +128,6 @@ class TypeUtils {
||
this
.
env
.
getTypeUtils
().
isAssignable
(
type
,
this
.
mapType
);
}
public
boolean
isEnclosedIn
(
Element
candidate
,
TypeElement
element
)
{
if
(
candidate
==
null
||
element
==
null
)
{
return
false
;
}
if
(
candidate
.
equals
(
element
))
{
return
true
;
}
return
isEnclosedIn
(
candidate
.
getEnclosingElement
(),
element
);
}
public
String
getJavaDoc
(
Element
element
)
{
String
javadoc
=
(
element
!=
null
)
?
this
.
env
.
getElementUtils
().
getDocComment
(
element
)
:
null
;
...
...
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