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
3acbffbc
Commit
3acbffbc
authored
Aug 19, 2018
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #14130 from dreis2211:remove-unusedmethod-typeutils
* pr/14130: Remove unused method in TypeUtils
parents
3ad3cfd7
a601bc86
Changes
1
Hide 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 @
3acbffbc
...
@@ -128,16 +128,6 @@ class TypeUtils {
...
@@ -128,16 +128,6 @@ class TypeUtils {
||
this
.
env
.
getTypeUtils
().
isAssignable
(
type
,
this
.
mapType
);
||
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
)
{
public
String
getJavaDoc
(
Element
element
)
{
String
javadoc
=
(
element
!=
null
)
String
javadoc
=
(
element
!=
null
)
?
this
.
env
.
getElementUtils
().
getDocComment
(
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