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
494b79c4
Commit
494b79c4
authored
Oct 02, 2017
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #10495 from Johnny Lim
* gh-10495: Remove BeansEndpoint.BeansEndpointResponse
parents
4e87f816
454e8eaf
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
19 deletions
+0
-19
BeansEndpoint.java
...org/springframework/boot/actuate/beans/BeansEndpoint.java
+0
-19
No files found.
spring-boot-actuator/src/main/java/org/springframework/boot/actuate/beans/BeansEndpoint.java
View file @
494b79c4
...
@@ -17,7 +17,6 @@
...
@@ -17,7 +17,6 @@
package
org
.
springframework
.
boot
.
actuate
.
beans
;
package
org
.
springframework
.
boot
.
actuate
.
beans
;
import
java.util.HashMap
;
import
java.util.HashMap
;
import
java.util.List
;
import
java.util.Map
;
import
java.util.Map
;
import
org.springframework.beans.factory.config.BeanDefinition
;
import
org.springframework.beans.factory.config.BeanDefinition
;
...
@@ -58,24 +57,6 @@ public class BeansEndpoint {
...
@@ -58,24 +57,6 @@ public class BeansEndpoint {
return
ApplicationContextDescriptor
.
describing
(
this
.
context
);
return
ApplicationContextDescriptor
.
describing
(
this
.
context
);
}
}
/**
* Response produced by the {@link BeansEndpoint}, primarily intended for
* serialization to JSON.
*/
public
static
class
BeansEndpointResponse
{
private
List
<
ApplicationContextDescriptor
>
contexts
;
public
BeansEndpointResponse
(
List
<
ApplicationContextDescriptor
>
contexts
)
{
this
.
contexts
=
contexts
;
}
public
List
<
ApplicationContextDescriptor
>
getContexts
()
{
return
this
.
contexts
;
}
}
/**
/**
* A description of an application context, primarily intended for serialization to
* A description of an application context, primarily intended for serialization to
* JSON.
* JSON.
...
...
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