# HG changeset patch # User malenkov # Date 1260347910 -10800 # Node ID 4e81657271baf0e2f72c750c200b1243ab5828c0 # Parent 4a92100685fa26ff1561b1b33124e608b6f56dde 6905574: DOC: Introspector's javadoc contains wrong statement Reviewed-by: gsm diff -r 4a92100685fa -r 4e81657271ba jdk/src/share/classes/java/beans/Introspector.java --- a/jdk/src/share/classes/java/beans/Introspector.java Wed Dec 09 11:34:18 2009 +0300 +++ b/jdk/src/share/classes/java/beans/Introspector.java Wed Dec 09 11:38:30 2009 +0300 @@ -78,20 +78,7 @@ * patterns to identify property accessors, event sources, or public * methods. We then proceed to analyze the class's superclass and add * in the information from it (and possibly on up the superclass chain). - * *
- * Because the Introspector caches BeanInfo classes for better performance,
- * take care if you use it in an application that uses
- * multiple class loaders.
- * In general, when you destroy a ClassLoader
- * that has been used to introspect classes,
- * you should use the
- * {@link #flushCaches Introspector.flushCaches
}
- * or
- * {@link #flushFromCaches Introspector.flushFromCaches
} method
- * to flush all of the introspected classes out of the cache.
- *
- *
* For more information about introspection and design patterns, please * consult the * JavaBeans specification.