--- old/src/java.compiler/share/classes/javax/lang/model/util/ElementFilter.java 2017-02-07 13:14:42.849011647 +0000 +++ new/src/java.compiler/share/classes/javax/lang/model/util/ElementFilter.java 2017-02-07 13:14:42.724003062 +0000 @@ -198,6 +198,7 @@ * @return a list of modules in {@code elements} * @param elements the elements to filter * @since 9 + * @spec JPMS */ public static List modulesIn(Iterable elements) { @@ -209,6 +210,7 @@ * @return a set of modules in {@code elements} * @param elements the elements to filter * @since 9 + * @spec JPMS */ public static Set modulesIn(Set elements) { @@ -245,6 +247,7 @@ * @return a list of {@code exports} directives in {@code directives} * @param directives the directives to filter * @since 9 + * @spec JPMS */ public static List exportsIn(Iterable directives) { @@ -267,6 +270,7 @@ * @return a list of {@code provides} directives in {@code directives} * @param directives the directives to filter * @since 9 + * @spec JPMS */ public static List providesIn(Iterable directives) { @@ -278,6 +282,7 @@ * @return a list of {@code requires} directives in {@code directives} * @param directives the directives to filter * @since 9 + * @spec JPMS */ public static List requiresIn(Iterable directives) { @@ -289,6 +294,7 @@ * @return a list of {@code uses} directives in {@code directives} * @param directives the directives to filter * @since 9 + * @spec JPMS */ public static List usesIn(Iterable directives) {