langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/AbstractDoclet.java
changeset 39364 bd6d4a7936b4
parent 39090 10c2cda4358d
child 40303 96a1226aca18
equal deleted inserted replaced
39363:ebaee646b121 39364:bd6d4a7936b4
    89      * @param root   the {@link DocletEnvironment} that points to the source to document.
    89      * @param root   the {@link DocletEnvironment} that points to the source to document.
    90      * @return true if the doclet executed without error.  False otherwise.
    90      * @return true if the doclet executed without error.  False otherwise.
    91      */
    91      */
    92     public boolean startDoclet(DocletEnvironment root) {
    92     public boolean startDoclet(DocletEnvironment root) {
    93         configuration = configuration();
    93         configuration = configuration();
    94         configuration.root = root;
    94         configuration.docEnv = root;
    95         configuration.cmtUtils = new CommentUtils(configuration);
    95         configuration.cmtUtils = new CommentUtils(configuration);
    96         configuration.utils = new Utils(configuration);
    96         configuration.utils = new Utils(configuration);
    97         utils = configuration.utils;
    97         utils = configuration.utils;
    98         configuration.workArounds = new WorkArounds(configuration);
    98         configuration.workArounds = new WorkArounds(configuration);
    99         if (!isValidDoclet()) {
    99         if (!isValidDoclet()) {