Commit 29ca159c authored by Stephane Nicoll's avatar Stephane Nicoll

Merge pull request #3473 from izeye/typo-20150713

* pr/3473:
  Fix typo
parents 7ba7693e d06f3b1a
...@@ -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 prexfix; 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.prexfix = 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.prexfix) return new RelaxedPropertyResolver(environment, this.prefix)
.getProperty(this.key); .getProperty(this.key);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment