Author: antelder
Date: Sat Nov 20 08:29:00 2010
New Revision: 1037134

URL: http://svn.apache.org/viewvc?rev=1037134&view=rev
Log:
Filter out some more cglib operations

Modified:
    
tuscany/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/jline/ServiceOperationCompletor.java

Modified: 
tuscany/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/jline/ServiceOperationCompletor.java
URL: 
http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/jline/ServiceOperationCompletor.java?rev=1037134&r1=1037133&r2=1037134&view=diff
==============================================================================
--- 
tuscany/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/jline/ServiceOperationCompletor.java
 (original)
+++ 
tuscany/sca-java-2.x/trunk/modules/shell/src/main/java/org/apache/tuscany/sca/shell/jline/ServiceOperationCompletor.java
 Sat Nov 20 08:29:00 2010
@@ -39,12 +39,17 @@ public class ServiceOperationCompletor e
 
     private Shell shell;
     private static final List<String> 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;


Reply via email to