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
f67b6a23
Commit
f67b6a23
authored
Oct 20, 2015
by
Johnny Lim
Committed by
Stephane Nicoll
Oct 20, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove unused property in TraceProperties
Closes gh-4241
parent
fc55d8b7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
17 deletions
+1
-17
TraceProperties.java
...g/springframework/boot/actuate/trace/TraceProperties.java
+1
-17
No files found.
spring-boot-actuator/src/main/java/org/springframework/boot/actuate/trace/TraceProperties.java
View file @
f67b6a23
...
@@ -43,19 +43,11 @@ public class TraceProperties {
...
@@ -43,19 +43,11 @@ public class TraceProperties {
DEFAULT_INCLUDES
=
Collections
.
unmodifiableSet
(
defaultIncludes
);
DEFAULT_INCLUDES
=
Collections
.
unmodifiableSet
(
defaultIncludes
);
}
}
private
static
final
int
DEFAULT_MAX_CONTENT_LENGTH
=
32768
;
/**
/**
* Items to included in the trace. Defaults to request/response headers and errors.
* Items to
be
included in the trace. Defaults to request/response headers and errors.
*/
*/
private
Set
<
Include
>
include
=
new
HashSet
<
Include
>(
DEFAULT_INCLUDES
);
private
Set
<
Include
>
include
=
new
HashSet
<
Include
>(
DEFAULT_INCLUDES
);
/**
* Maximum number of content bytes that can be traced before being truncated (-1 for
* unlimited).
*/
private
int
maxContentLength
=
DEFAULT_MAX_CONTENT_LENGTH
;
public
Set
<
Include
>
getInclude
()
{
public
Set
<
Include
>
getInclude
()
{
return
this
.
include
;
return
this
.
include
;
}
}
...
@@ -64,14 +56,6 @@ public class TraceProperties {
...
@@ -64,14 +56,6 @@ public class TraceProperties {
this
.
include
=
include
;
this
.
include
=
include
;
}
}
public
int
getMaxContentLength
()
{
return
this
.
maxContentLength
;
}
public
void
setMaxContentLength
(
int
maxContentLength
)
{
this
.
maxContentLength
=
maxContentLength
;
}
/**
/**
* Include options for tracing.
* Include options for tracing.
*/
*/
...
...
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