Skip to content

Commit

Permalink
Feat: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kz44 committed Feb 1, 2024
1 parent e0ad4a4 commit e49d34e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
@Builder
public class SportDTO {

public SportDTO(String name) {
this.name = name;
}
public String name;

public String name;
public SportDTO(String name) {
this.name = name;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public class SportServiceImp implements SportService {


/**
* This method returns a paginated list of SportsDTO.
* {@summary <p>This method returns a paginated list of SportsDTO.</p>}
*
* @param pageable contains the page and size values for pagination.
* @return paginated list of SportDTO.
Expand Down

0 comments on commit e49d34e

Please sign in to comment.