mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-23 14:40:00 +00:00
Update MockEnvironment / MockPropertySource types
Reflecting signature changes in getProperty() methods git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@4245 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Vendored
+2
-2
@@ -87,7 +87,7 @@ public class MockPropertySource extends PropertiesPropertySource {
|
||||
/**
|
||||
* Set the given property on the underlying {@link Properties} object.
|
||||
*/
|
||||
public void setProperty(String key, String value) {
|
||||
public void setProperty(String key, Object value) {
|
||||
this.source.put(key, value);
|
||||
}
|
||||
|
||||
@@ -96,7 +96,7 @@ public class MockPropertySource extends PropertiesPropertySource {
|
||||
* Useful for method chaining and fluent-style use.
|
||||
* @return this {@link MockPropertySource} instance
|
||||
*/
|
||||
public MockPropertySource withProperty(String key, String value) {
|
||||
public MockPropertySource withProperty(String key, Object value) {
|
||||
this.setProperty(key, value);
|
||||
return this;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user