From 9ec7c59c05a0f619a04b3629c8317d523d8648a9 Mon Sep 17 00:00:00 2001 From: mhoshi-vm <67083789+mhoshi-vm@users.noreply.github.com> Date: Mon, 31 May 2021 17:36:16 +0900 Subject: [PATCH] Delete PetClinicApplication.java --- .../petclinic/PetClinicApplication.java | 35 ------------------- 1 file changed, 35 deletions(-) delete mode 100644 src/main/java/org/springframework/samples/petclinic/PetClinicApplication.java diff --git a/src/main/java/org/springframework/samples/petclinic/PetClinicApplication.java b/src/main/java/org/springframework/samples/petclinic/PetClinicApplication.java deleted file mode 100644 index 191253587..000000000 --- a/src/main/java/org/springframework/samples/petclinic/PetClinicApplication.java +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright 2012-2019 the original author or authors. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * https://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -package org.springframework.samples.petclinic; - -import org.springframework.boot.SpringApplication; -import org.springframework.boot.autoconfigure.SpringBootApplication; - -/** - * PetClinic Spring Boot Application. - * - * @author Dave Syer - * - */ -@SpringBootApplication(proxyBeanMethods = false) -public class PetClinicApplication { - - public static void main(String[] args) { - SpringApplication.run(PetClinicApplication.class, args); - } - -}