Fixed previously added syntax error.

This commit is contained in:
Christopher Jones 2017-08-31 07:25:37 -05:00
parent 59fc90f08b
commit 49d729e3cd

View file

@ -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);
} }
} }