-
Notifications
You must be signed in to change notification settings - Fork 84
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
Delete Unused PNG Files #1580
Delete Unused PNG Files #1580
Conversation
@BeckerWdf it would be useful to tell in the PR description how you detected they are unused? |
I did a search for the PNGs. If I found no usages in the PDE files then I assumed they are not used.. |
Anyway. I smoke test from a third person would be good to have. |
@vogella : Maybe you can review and double check this change too. |
Note for myself:
|
Impressive @BeckerWdf that you did this check manually. Only verifying your changes drives me almost crazy. I have added a little Dart script to check for possible reference so that I only need to check the remaining files reported by the script. As the full path is constructed in code, a full automatic check seems harder to implement. If I pipe this output to the file "pngfiles.txt" I can search for the files with the following dart script:
Output for png files to check manually, potentially present with different paths:
I check until the first one which seems to have a reference: defcon_wiz private static final String PATH_TOOL = ICONS_PATH + "etool16/"; //$NON-NLS-1$ @BeckerWdf can you verify if that file is really not used? |
Thanks for checking
Sure: |
ad221e2
to
a5c398c
Compare
I also check the rest and with the removal of the constant this one looks good to me. Thank a bunch @BeckerWdf for this work |
Thanks! Getting rid of unused resources is highly appreciated! |
No description provided.