Looks fine to me. Xuelei
On 8/19/2016 10:25 PM, Sean Mullan wrote:
Please review this docs-only fix to provide descriptions for the jdk.security.auth and jdk.security.jgss modules: diff -r 657a5b92e26e src/jdk.security.auth/share/classes/module-info.java --- a/src/jdk.security.auth/share/classes/module-info.java Fri Aug 19 13:50:03 2016 +0200 +++ b/src/jdk.security.auth/share/classes/module-info.java Fri Aug 19 10:24:47 2016 -0400 @@ -1,3 +1,3 @@ /* - * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -25,2 +25,6 @@ +/** + * Contains the implementation of the javax.security.auth.* interfaces and + * authentication modules. + */ module jdk.security.auth { diff -r 657a5b92e26e src/jdk.security.jgss/share/classes/module-info.java --- a/src/jdk.security.jgss/share/classes/module-info.java Fri Aug 19 13:50:03 2016 +0200 +++ b/src/jdk.security.jgss/share/classes/module-info.java Fri Aug 19 10:24:47 2016 -0400 @@ -1,3 +1,3 @@ /* - * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -25,2 +25,6 @@ +/** + * Defines Java extensions to the GSS-API and an implementation of the SASL + * GSSAPI mechanism. + */ module jdk.security.jgss { --Sean