shouryaj98 / Hotel-Management-Project-Java

It is a Hotel Management tool which can be used to manage activites like storing customer details, booking rooms of four different types, ordering food for particular rooms, unbooking rooms and showing the bill.
MIT License
335 stars 426 forks source link

Code Smells #22

Open DylanEscala opened 3 years ago

DylanEscala commented 3 years ago

Switch Statement I found a switch on the bookroom method wich is too large image You can solve it applying the Replace Type Code with State/Strategy refactoring image Dead Code On the class Singleroom you have a parameter which is not used by the class image You can solve it applying Remove Parameter refactoring image Large Class The class Hotel is too large and has too many responsabilities. More than 5 methods. image You can solve it creating new classes and group those methods image image image image image