shouryaj98/Hotel-Management-Project-Java

Code Smells

DylanEscala opened this issue · 0 comments

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