Hotel-Management-Project-Java icon indicating copy to clipboard operation
Hotel-Management-Project-Java copied to clipboard

Code Smells

Open DylanEscala opened this issue 5 years ago • 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

DylanEscala avatar Jan 15 '21 20:01 DylanEscala