vhpx/video-store-manager

Change wildcard imports to specific import to avoid wasting resources on unnecessary imports.

vhpx opened this issue · 4 comments

vhpx commented

I noticed there is an java.io.* import inside items/Item.java.

It could be further optimized by changing it into individual imports so that the compiler ONLY import the needed resources.

I've already replaced java.io.* with specific libraries

vhpx commented

I've already replaced java.io.* with specific libraries

Can you show me where the changes are? Please open a PR if you haven't already done it.

Please see PR #6

vhpx commented

This issue was resolved by @npat273's #6. So I'll close this issue now.