Remove sysout printlns

git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@681629 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
antelder 2008-08-01 08:13:15 +00:00
parent 2bdbe49112
commit 78c9e1f78b

View file

@ -71,7 +71,6 @@ public class TuscanyAnnotationProcessor implements AnnotationProcessor {
}
protected void injectFieldResource(Object instance, Field field, Reference annotation) throws IllegalArgumentException, IllegalAccessException {
System.out.println("TuscanyAnnotationProcessor.injectFieldResource" + annotation);
String serviceName = annotation.name();
if (serviceName == null || serviceName.length() < 1) {
@ -87,7 +86,6 @@ public class TuscanyAnnotationProcessor implements AnnotationProcessor {
}
protected void injectMethodResource(Object instance, Method method, Reference annotation) throws IllegalArgumentException, IllegalAccessException, InvocationTargetException {
System.out.println("TuscanyAnnotationProcessor.injectMethodResource" + annotation);
String serviceName = annotation.name();
if (serviceName == null || serviceName.length() < 1) {