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:
@@ -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;
|
||||
|
||||
+1
-1
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user