1
0
mirror of synced 2026-05-22 13:23:17 +00:00

Use consistent modifier order

Update code to use a consistent modifier order that aligns with that
used in the "Java Language specification".

Issue gh-8945
This commit is contained in:
Phillip Webb
2020-07-26 22:52:28 -07:00
committed by Rob Winch
parent 4075595a3f
commit a0b9442265
27 changed files with 83 additions and 86 deletions
@@ -187,7 +187,7 @@ final class LdapEncoder {
* @return The decoded value as a string.
* @throws BadLdapGrammarException
*/
static public String nameDecode(String value) throws BadLdapGrammarException {
public static String nameDecode(String value) throws BadLdapGrammarException {
if (value == null) {
return null;
@@ -187,7 +187,7 @@ final class LdapEncoder {
* @return The decoded value as a string.
* @throws BadLdapGrammarException
*/
static public String nameDecode(String value) throws BadLdapGrammarException {
public static String nameDecode(String value) throws BadLdapGrammarException {
if (value == null) {
return null;