Browse Source

Fix method comment for getRequiredProperty(String)

pull/544/merge
Lukasz Kryger 12 years ago committed by Stephane Nicoll
parent
commit
0dc52a8343
  1. 3
      spring-core/src/main/java/org/springframework/core/env/PropertyResolver.java

3
spring-core/src/main/java/org/springframework/core/env/PropertyResolver.java vendored

@ -82,8 +82,7 @@ public interface PropertyResolver { @@ -82,8 +82,7 @@ public interface PropertyResolver {
<T> Class<T> getPropertyAsClass(String key, Class<T> targetType);
/**
* Return the property value associated with the given key, converted to the given
* targetType (never {@code null}).
* Return the property value associated with the given key (never {@code null}).
* @throws IllegalStateException if the key cannot be resolved
* @see #getRequiredProperty(String, Class)
*/

Loading…
Cancel
Save