Skip to content

Commit

Permalink
refactor: mitigate java:S1124 Modifiers should be declared in the cor…
Browse files Browse the repository at this point in the history
…rect order

* Reordered.
  • Loading branch information
swalchemist committed Jan 19, 2024
1 parent ca7faae commit f28c639
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import org.passay.CharacterRule;
import org.passay.EnglishCharacterData;

final public class CharacterRuleProvider {
public final class CharacterRuleProvider {

private CharacterRuleProvider() {
super();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

import static java.nio.charset.StandardCharsets.UTF_8;

final public class CertificateFormatter {
public final class CertificateFormatter {
public static final String SSH_RSA = "ssh-rsa";

private CertificateFormatter() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import java.nio.ByteBuffer;
import java.util.UUID;

final public class UuidUtil {
public final class UuidUtil {

private UuidUtil() {
super();
Expand Down

0 comments on commit f28c639

Please sign in to comment.