< prev index next >

src/java.desktop/share/classes/java/beans/Introspector.java

Print this page
rev 60127 : 8249205: Remove unnecessary trademark symbols

@@ -85,11 +85,11 @@
  * methods.  We then proceed to analyze the class's superclass and add
  * in the information from it (and possibly on up the superclass chain).
  * <p>
  * For more information about introspection and design patterns, please
  * consult the
- *  <a href="http://www.oracle.com/technetwork/java/javase/documentation/spec-136004.html">JavaBeans&trade; specification</a>.
+ *  <a href="http://www.oracle.com/technetwork/java/javase/documentation/spec-136004.html">JavaBeans specification</a>.
  *
  * @since 1.1
  */
 
 public class Introspector {

@@ -1120,11 +1120,11 @@
     private static Class<?> findCustomizerClass(Class<?> type) {
         String name = type.getName() + "Customizer";
         try {
             type = ClassFinder.findClass(name, type.getClassLoader());
             // Each customizer should inherit java.awt.Component and implement java.beans.Customizer
-            // according to the section 9.3 of JavaBeans&trade; specification
+            // according to the section 9.3 of JavaBeans specification
             if (Component.class.isAssignableFrom(type) && Customizer.class.isAssignableFrom(type)) {
                 return type;
             }
         }
         catch (Exception exception) {
< prev index next >