NYRDS / remixed-dungeon

Traditional roguelike game with pixel-art graphics and simple interface - Remixed Pixel Dungeon
http://wiki.nyrds.net
GNU General Public License v3.0
244 stars 80 forks source link

Use energy-efficieny collection implementation HashedMap #4388

Closed sofurihafe closed 2 months ago

sofurihafe commented 4 months ago

This PR suggest using more energy-efficient collection implementation to save overall application energy consumption.

I was investigating energy-efficiency of different collection implementations in Java as a part of my research paper. Usage of third-party HashMap implementation HashedMap from Apache Commons Collections was showed decrease of energy consumption by 0.5% compared to a standard implementation.

Mikhael-Danilov commented 4 months ago

Thank you for your contribution, however I have a few questions, as it introduces new dependency.