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
2b98b11c
Commit
2b98b11c
authored
Apr 18, 2018
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Polish "Less object instantiation in WebMvcTags"
Closes gh-12894
parent
d6761476
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
WebMvcTags.java
...ramework/boot/actuate/metrics/web/servlet/WebMvcTags.java
+6
-5
No files found.
spring-boot-project/spring-boot-actuator/src/main/java/org/springframework/boot/actuate/metrics/web/servlet/WebMvcTags.java
View file @
2b98b11c
...
...
@@ -58,7 +58,7 @@ public final class WebMvcTags {
* @return the method tag whose value is a capitalized method (e.g. GET).
*/
public
static
Tag
method
(
HttpServletRequest
request
)
{
return
request
==
null
?
METHOD_UNKNOWN
:
Tag
.
of
(
"method"
,
request
.
getMethod
(
));
return
(
request
==
null
?
METHOD_UNKNOWN
:
Tag
.
of
(
"method"
,
request
.
getMethod
()
));
}
/**
...
...
@@ -67,8 +67,8 @@ public final class WebMvcTags {
* @return the status tag derived from the status of the response
*/
public
static
Tag
status
(
HttpServletResponse
response
)
{
return
response
==
null
?
STATUS_UNKNOWN
:
Tag
.
of
(
"status"
,
Integer
.
toString
(
response
.
getStatus
()));
return
(
response
==
null
?
STATUS_UNKNOWN
:
Tag
.
of
(
"status"
,
Integer
.
toString
(
response
.
getStatus
()))
)
;
}
/**
...
...
@@ -128,8 +128,9 @@ public final class WebMvcTags {
* @return the exception tag derived from the exception
*/
public
static
Tag
exception
(
Throwable
exception
)
{
return
exception
==
null
?
EXCEPTION_NONE
:
Tag
.
of
(
"exception"
,
exception
.
getClass
().
getSimpleName
());
return
(
exception
!=
null
?
Tag
.
of
(
"exception"
,
exception
.
getClass
().
getSimpleName
())
:
EXCEPTION_NONE
);
}
}
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