< prev index next >

langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/ClassReader.java

Print this page

        

*** 1458,1468 **** int numAttributes = nextChar(); if (numAttributes != 0) { ListBuffer<CompoundAnnotationProxy> proxies = new ListBuffer<>(); for (int i = 0; i<numAttributes; i++) { CompoundAnnotationProxy proxy = readCompoundAnnotation(); - if (proxy.type.tsym == syms.proprietaryType.tsym) sym.flags_field |= PROPRIETARY; else if (proxy.type.tsym == syms.profileType.tsym) { if (profile != Profile.DEFAULT) { for (Pair<Name,Attribute> v: proxy.values) { --- 1458,1467 ----
*** 1477,1486 **** --- 1476,1495 ---- } else { if (proxy.type.tsym == syms.annotationTargetType.tsym) { target = proxy; } else if (proxy.type.tsym == syms.repeatableType.tsym) { repeatable = proxy; + } else if (proxy.type.tsym == syms.deprecatedType.tsym) { + sym.flags_field |= DEPRECATED; + for (Pair<Name, Attribute> v : proxy.values) { + if (v.fst == names.forRemoval && v.snd instanceof Attribute.Constant) { + Attribute.Constant c = (Attribute.Constant) v.snd; + if (c.type == syms.booleanType && ((Integer) c.value) != 0) { + sym.flags_field |= DEPRECATED_REMOVAL; + } + } + } } proxies.append(proxy); } }
< prev index next >