< prev index next >

src/jdk.compiler/share/classes/com/sun/tools/javac/processing/JavacProcessingEnvironment.java

Print this page

        

*** 836,846 **** List<ModuleSymbol> moduleInfoFiles) { Map<String, TypeElement> unmatchedAnnotations = new HashMap<>(annotationsPresent.size()); for(TypeElement a : annotationsPresent) { ModuleElement mod = elementUtils.getModuleOf(a); ! String moduleSpec = allowModules && mod != null ? mod.getSimpleName() + "/" : ""; unmatchedAnnotations.put(moduleSpec + a.getQualifiedName().toString(), a); } // Give "*" processors a chance to match --- 836,846 ---- List<ModuleSymbol> moduleInfoFiles) { Map<String, TypeElement> unmatchedAnnotations = new HashMap<>(annotationsPresent.size()); for(TypeElement a : annotationsPresent) { ModuleElement mod = elementUtils.getModuleOf(a); ! String moduleSpec = allowModules && mod != null ? mod.getQualifiedName() + "/" : ""; unmatchedAnnotations.put(moduleSpec + a.getQualifiedName().toString(), a); } // Give "*" processors a chance to match
< prev index next >