-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix unchecked build warnings #1469
base: master
Are you sure you want to change the base?
Conversation
7bd8774
to
9829132
Compare
9829132
to
619eba0
Compare
@@ -173,7 +173,7 @@ public void endDraggingFrame(JComponent f) { | |||
} | |||
}); | |||
// Dragging windows on OS X leaves residue from the borders with FlatLaf, so avoid setting dragMode. | |||
if (cooja.configuration.lookAndFeel() != LookAndFeel.FlatLaf) { | |||
if (Cooja.configuration.lookAndFeel() != LookAndFeel.FlatLaf) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was aware of a few of these warnings but left them because I was hoping the static member would eventually become non-static. But that's not happening anytime soon, so might as well do this.
I tried to untangle these parts before but wasn't successful. I have skimmed the PR and it looks fine, but I think we should wait with merging this until after the release is completed. |
No description provided.