Skip to content

Commit

Permalink
Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
FoxNeo committed Mar 6, 2024
1 parent b475290 commit c1eed16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
public class CarController {

Logger log = LoggerFactory.getLogger(CarController.class);

@GetMapping("/api/status")
public CarStatus getStatus() {
log.info("getStatus() has been called");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import org.apache.commons.logging.LogFactory;

public class CarStatus {

@Getter
@Setter
private String temp;
Expand Down

0 comments on commit c1eed16

Please sign in to comment.