-
Notifications
You must be signed in to change notification settings - Fork 501
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
4051 download all files #4363
4051 download all files #4363
Conversation
public void toggleSelectedFiles(){ | ||
//method for when user clicks (de-)select all files | ||
public void toggleAllSelected(){ | ||
System.out.print("in toggle all"); |
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.
Can you please remove this System.out.print
or convert it to logger.fine
if it might be valuable when debugging in production?
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.
Done
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.
Looks good.
public void toggleSelectedFiles(){ | ||
//method for when user clicks (de-)select all files | ||
public void toggleAllSelected(){ | ||
this.selectAllFiles = !this.selectAllFiles; |
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.
At first blush this.selectAllFiles = !this.selectAllFiles
was confusing to me but I understand that this is a toggle. Clicking means "reverse the state of this thing". We could add a comment to clarify this.
…ines of metadata
…ividual row select/unselect.
New Contributors
Welcome! New contributors should at least glance at CONTRIBUTING.md, especially the section on pull requests where we encourage you to reach out to other developers before you start coding. Also, please note that we measure code coverage and prefer you write unit tests. Pull requests can still be reviewed without tests or completion of the checklist outlined below. Thanks!
Related Issues
Pull Request Checklist