--- old/src/java.base/share/classes/sun/reflect/generics/repository/AbstractRepository.java 2015-09-24 14:38:18.197755473 +0300 +++ new/src/java.base/share/classes/sun/reflect/generics/repository/AbstractRepository.java 2015-09-24 14:38:17.777755482 +0300 @@ -48,15 +48,15 @@ private GenericsFactory getFactory() { return factory;} /** - * Accessor for tree. + * Accessor for {@code tree}. * @return the cached AST this repository holds */ protected T getTree(){ return tree;} /** - * Returns a Reifier used to convert parts of the + * Returns a {@code Reifier} used to convert parts of the * AST into reflective objects. - * @return a Reifier used to convert parts of the + * @return a {@code Reifier} used to convert parts of the * AST into reflective objects */ protected Reifier getReifier(){return Reifier.make(getFactory());}