langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/processing/JavacProcessingEnvironment.java
changeset 42828 cce89649f958
parent 42827 36468b5fa7f4
child 43037 3e1520a857fa
equal deleted inserted replaced
42827:36468b5fa7f4 42828:cce89649f958
  1224         }
  1224         }
  1225 
  1225 
  1226         /** Print info about this round. */
  1226         /** Print info about this round. */
  1227         private void printRoundInfo(boolean lastRound) {
  1227         private void printRoundInfo(boolean lastRound) {
  1228             if (printRounds || verbose) {
  1228             if (printRounds || verbose) {
  1229                 List<ClassSymbol> tlc = lastRound ? List.<ClassSymbol>nil() : topLevelClasses;
  1229                 List<ClassSymbol> tlc = lastRound ? List.nil() : topLevelClasses;
  1230                 Set<TypeElement> ap = lastRound ? Collections.<TypeElement>emptySet() : annotationsPresent;
  1230                 Set<TypeElement> ap = lastRound ? Collections.emptySet() : annotationsPresent;
  1231                 log.printLines("x.print.rounds",
  1231                 log.printLines("x.print.rounds",
  1232                         number,
  1232                         number,
  1233                         "{" + tlc.toString(", ") + "}",
  1233                         "{" + tlc.toString(", ") + "}",
  1234                         ap,
  1234                         ap,
  1235                         lastRound);
  1235                         lastRound);