-
Notifications
You must be signed in to change notification settings - Fork 3
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
Spm typed members #9
base: master
Are you sure you want to change the base?
Conversation
Added @OVERRIDES Converted to shorter lambda-style calls for functional interfaces
bf8f482
to
d69da23
Compare
Good changes. For future reference: It would be simpler/easier to review if commits in a PR are arranged thematically, instead of strictly by file. The current commits are what I got after rebaseing to break up the changes by type/intent. |
SPMObjectInfo localinfo = manageSplitPane.getFileSystem().getPlugins().stream().filter(self).findFirst().orElse(null); | ||
SPMObjectInfo remoteinfo = updateSplitPane.getFileSystem().getPlugins().stream().filter(self).findFirst().orElse(null); |
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.
These lines are far too long. They should be wrapped. Probably align the .stream()
with .getPlugins()
Which types of warnings? Please break them up. Also, please don't merge the main branch into a pr like this one. |
No description provided.