StruckCroissant / Game-DB

Game-DB is a game database search engine deployed on Docker and powered by Java Spring Boot and AngularJS
GNU General Public License v3.0
1 stars 0 forks source link

Refactor all null returns to Optional<T> #18

Closed StruckCroissant closed 2 years ago

StruckCroissant commented 2 years ago

All returns in GameDAOImpl & UserDAOImpl return either a specific Object or null - this could cause some issues in the future. These methods should be refactored into Optional to remove some guesswork when calling the DB.

StruckCroissant commented 2 years ago

Fixed as of 3ca4d14