Commit 3341a5db authored by Phillip Webb's avatar Phillip Webb

Deprecate @ConditionalOnMissingClass.value

Fixes gh-1069
parent e8fcb0c8
...@@ -41,7 +41,10 @@ public @interface ConditionalOnMissingClass { ...@@ -41,7 +41,10 @@ public @interface ConditionalOnMissingClass {
* bytecode it is safe to specify classes here that may ultimately not be on the * bytecode it is safe to specify classes here that may ultimately not be on the
* classpath. * classpath.
* @return the classes that must be present * @return the classes that must be present
* @deprecated Since 1.1.0 due to the fact that the reflection errors can occur when
* beans containing the annotation remain in the context. Use {@link #name()} instead.
*/ */
@Deprecated
public Class<?>[] value() default {}; public Class<?>[] value() default {};
/** /**
......
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