DEV Community

Discussion on: Code Review Checklist for Java Beginners

Collapse
 
xanderyzwich profile image
Corey McCarty • Edited

Id suggest that constants files only be used if needed in multiple places and apart from reference to a single class. It the usage will always be in regards to a single class (or within a single class) then put the constants in that class.

Collapse
 
smartyansh profile image
Anshul Bansal

Thanks for pointing it out. I totally agree with you. Will update the article.