Removed the controller

Based on the editor comments in the post.
This commit is contained in:
hemantvsn 2018-06-11 23:41:00 +05:30 committed by GitHub
parent 1395211756
commit 98d37d0f8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 20 deletions

View File

@ -1,20 +0,0 @@
package com.baeldung.springbootnonwebapp;
import java.time.LocalDate;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* Controller exposing rest web services
* @author hemant
*
*/
@RestController
public class HelloController {
@RequestMapping("/")
public LocalDate getMinLocalDate() {
return LocalDate.MIN;
}
}