Close the 'runner' tag.

Annotate the CrmApplication class with @SuppressWarnings('unused').
This commit is contained in:
John Blum
2020-02-21 15:28:18 -08:00
parent 7897f46454
commit 183b8f5486

View File

@@ -33,6 +33,7 @@ import example.app.crm.repo.CustomerRepository;
* @see org.springframework.boot.autoconfigure.SpringBootApplication
* @since 1.2.0
*/
@SuppressWarnings("unused")
// tag::class[]
@SpringBootApplication
public class CrmApplication {
@@ -69,6 +70,6 @@ public class CrmApplication {
System.err.printf("Customer was [%s]%n", queriedJonDoe);
};
}
// tag::runner[]
// end::runner[]
}
// end::class[]