Skip to content

Commit

Permalink
Fix smells
Browse files Browse the repository at this point in the history
  • Loading branch information
RetGal committed Dec 14, 2024
1 parent 5535890 commit 0f614f4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@

public class ClipboardDispatcher {

private ClipboardDispatcher() {
}

public static void sendClipboard(NetworkEngine networkEngine, BaseFrame frame, ClipboardOwner owner) {

Clipboard clipboard = Toolkit.getDefaultToolkit().getSystemClipboard();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import static java.lang.System.getProperty;

public class CustomTrustManager implements X509TrustManager {
private final static X509Certificate[] ACCEPTED = {};
private static final X509Certificate[] ACCEPTED = {};

@Override
public X509Certificate[] getAcceptedIssuers() {
Expand Down

0 comments on commit 0f614f4

Please sign in to comment.