From ca99e4d7b927f95c72e0f3024d36dc488cf662dc Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Thu, 25 Apr 2013 10:17:47 +0100 Subject: [PATCH] Remove unnecessary explicit FQCN --- spring-bootstrap-cli/samples/app.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-bootstrap-cli/samples/app.groovy b/spring-bootstrap-cli/samples/app.groovy index 6db47574af3..2e66b62f00a 100644 --- a/spring-bootstrap-cli/samples/app.groovy +++ b/spring-bootstrap-cli/samples/app.groovy @@ -1,9 +1,9 @@ package org.test @Component -class Example implements org.springframework.bootstrap.CommandLineRunner { +class Example implements CommandLineRunner { - @org.springframework.beans.factory.annotation.Autowired + @Autowired private MyService myService; public void run(String... args) {