Skip to content

Commit

Permalink
fix some checkstyle errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Ariel Shkedi committed Aug 20, 2024
2 parents 3e77e20 + 9834ab1 commit 7f44f52
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,6 @@ public int getYear() {
* @return a LocalDate
*/
public LocalDate toLocalDate() {
return LocalDate.of(getYear(), getMonth()+1, getDayOfMonth());
return LocalDate.of(getYear(), getMonth() + 1, getDayOfMonth());
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
import java.time.LocalDate;
import java.time.Month;
import java.util.Calendar;
import java.util.Locale;
import java.util.GregorianCalendar;
import java.util.Locale;
import java.util.TimeZone;

import org.apache.commons.lang3.AbstractLangTest;
Expand Down

0 comments on commit 7f44f52

Please sign in to comment.