mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-18 13:35:50 +00:00
Fixed previously added syntax error.
This commit is contained in:
parent
59fc90f08b
commit
49d729e3cd
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
public class PetClinicApplication {
|
public class PetClinicApplication {
|
||||||
|
|
||||||
public static void main(String[] args) throws Exception {
|
public static void main(String[] args) throws Exception {
|
||||||
SpringApplication.run(PetClinicApplication.class, args)
|
SpringApplication.run(PetClinicApplication.class, args);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue