From 98dceb1593305a85de799c6e3bb15edb4bd399b0 Mon Sep 17 00:00:00 2001 From: antelder Date: Sat, 20 Nov 2010 08:29:00 +0000 Subject: Filter out some more cglib operations git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1037134 13f79535-47bb-0310-9956-ffa450edef68 --- .../sca/shell/jline/ServiceOperationCompletor.java | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/jline/ServiceOperationCompletor.java b/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/jline/ServiceOperationCompletor.java index 8b74a4f7d6..d4e1fc55e4 100644 --- a/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/jline/ServiceOperationCompletor.java +++ b/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/jline/ServiceOperationCompletor.java @@ -39,12 +39,17 @@ public class ServiceOperationCompletor extends SimpleCompletor { private Shell shell; private static final List EXCLUDED_OPS = Arrays.asList(new String[] {"equals", "getClass", - "getInvocationHandler", - "getProxyClass", "hashCode", - "isProxyClass", "newProxyInstance", - "notify", "notifyAll", "toString", - "wait"}); - + "getInvocationHandler", + "getProxyClass", "hashCode", + "isProxyClass", "newProxyInstance", + "notify", "notifyAll", "toString", + "wait", "CGLIB$SET_STATIC_CALLBACKS", + "CGLIB$SET_THREAD_CALLBACKS", + "CGLIB$findMethodProxy", + "getCallback", "getCallbacks", + "newInstance", "setCallback", + "setCallbacks"}); + public ServiceOperationCompletor(Shell shell) { super(""); this.shell = shell; -- cgit v1.2.3