-
-
Notifications
You must be signed in to change notification settings - Fork 103
General cleanup of Base
#1299
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
General cleanup of Base
#1299
Conversation
I started cleaning up some of `Base`'s startup sequence for clarity of what is being started when. Nowhere near completion and I think a lot of this class will need to be refactored in the future. Also removed some of the timing measurement comments Added some comments to the Processing CLI class
|
|
||
| // // Check if there were previously opened sketches to be restored | ||
| // boolean opened = restoreSketches(); | ||
| ContributionListing cl = ContributionListing.getInstance(); |
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.
This is one thing that moved in the sequence, I think this should be okay
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.
what is contribution listing?
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.
It's the helper class that will gather the contributions in the contributions manager from the net
| private static void setLookAndFeel() { | ||
| try { | ||
| // Use native popups to avoid looking crappy on macOS | ||
| JPopupMenu.setDefaultLightWeightPopupEnabled(false); |
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.
Also moved in the sequence
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.
lgtm! merge when ready
I started cleaning up some of
Base's startup sequence for clarity of what is being started when. Nowhere near completion and I think a lot of this class will need to be refactored in the future.Also removed some of the timing measurement comments
Added some comments to the Processing CLI class