src/share/classes/java/lang/reflect/Modifier.java

Print this page

        

*** 406,416 **** /** * The Java source modifiers that can be applied to a method or constructor parameter. * @jls 8.4.1 Formal Parameters */ private static final int PARAMETER_MODIFIERS = ! Modifier.FINAL; /** * */ static final int ACCESS_MODIFIERS = --- 406,416 ---- /** * The Java source modifiers that can be applied to a method or constructor parameter. * @jls 8.4.1 Formal Parameters */ private static final int PARAMETER_MODIFIERS = ! Modifier.FINAL | Modifier.SYNTHETIC | Modifier.MANDATED; /** * */ static final int ACCESS_MODIFIERS =