While testing compliance of nb-javac sources with respect to Classpath "exception" I performed grep over the sources and realized one .java file was missing its license header completely:
find . -type f | grep java | while read X; do grep -r 'particular file as subject to the
"Classpath" exception as provided' $X >/dev/null || echo No CPE in $X; done
No CPE in ./make/langtools/netbeans/nb-javac/test/com/sun/tools/javac/parser/
DocCommentParserTest.java
Certainly that's not intentional, but it's better to keep things clean when it comes to licenses. Let's add the missing license header. Thank you!
PS: I copied the license header from the sibling .java file in the same directory.
While testing compliance of
nb-javac
sources with respect to Classpath "exception" I performed grep over the sources and realized one.java
file was missing its license header completely:Certainly that's not intentional, but it's better to keep things clean when it comes to licenses. Let's add the missing license header. Thank you!
PS: I copied the license header from the sibling
.java
file in the same directory.