clean-code-java icon indicating copy to clipboard operation
clean-code-java copied to clipboard

Clean Code concepts adapted for Java. Based on @ryanmcdermott repository.

Results 3 clean-code-java issues
Sort by recently updated
recently updated
newest added

hi,please correct final row : Good: private void addMonthToDate(Date date, int month){ //.. } Date date = new Date(); addMonthToDate(1, date); ---> addMonthToDate(date, 1);

Nearly entirety of **Functions** part is written with JavaScript in mind, mentioning even AngularJS, a popular JavaScript framework. This part also has no examples.

method addMonthToDate accepts the date as first argument