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
29ca159c
Commit
29ca159c
authored
Jul 13, 2015
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3473 from izeye/typo-20150713
* pr/3473: Fix typo
parents
7ba7693e
d06f3b1a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
ApplicationPidFileWriter.java
...amework/boot/actuate/system/ApplicationPidFileWriter.java
+3
-3
No files found.
spring-boot-actuator/src/main/java/org/springframework/boot/actuate/system/ApplicationPidFileWriter.java
View file @
29ca159c
...
@@ -200,12 +200,12 @@ public class ApplicationPidFileWriter implements
...
@@ -200,12 +200,12 @@ public class ApplicationPidFileWriter implements
*/
*/
private
static
class
SpringProperty
implements
Property
{
private
static
class
SpringProperty
implements
Property
{
private
final
String
pre
x
fix
;
private
final
String
prefix
;
private
final
String
key
;
private
final
String
key
;
public
SpringProperty
(
String
prefix
,
String
key
)
{
public
SpringProperty
(
String
prefix
,
String
key
)
{
this
.
pre
x
fix
=
prefix
;
this
.
prefix
=
prefix
;
this
.
key
=
key
;
this
.
key
=
key
;
}
}
...
@@ -215,7 +215,7 @@ public class ApplicationPidFileWriter implements
...
@@ -215,7 +215,7 @@ public class ApplicationPidFileWriter implements
if
(
environment
==
null
)
{
if
(
environment
==
null
)
{
return
null
;
return
null
;
}
}
return
new
RelaxedPropertyResolver
(
environment
,
this
.
pre
x
fix
)
return
new
RelaxedPropertyResolver
(
environment
,
this
.
prefix
)
.
getProperty
(
this
.
key
);
.
getProperty
(
this
.
key
);
}
}
...
...
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