You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sirona.apache.org by jl...@apache.org on 2013/11/07 12:23:29 UTC

svn commit: r1539597 - /incubator/sirona/trunk/agent/performance/aop/src/main/java/org/apache/sirona/aop/AbstractPerformanceInterceptor.java

Author: jlmonteiro
Date: Thu Nov  7 11:23:29 2013
New Revision: 1539597

URL: http://svn.apache.org/r1539597
Log:
Adding transient flag to make SerializableMethod really serilizable

Modified:
    incubator/sirona/trunk/agent/performance/aop/src/main/java/org/apache/sirona/aop/AbstractPerformanceInterceptor.java

Modified: incubator/sirona/trunk/agent/performance/aop/src/main/java/org/apache/sirona/aop/AbstractPerformanceInterceptor.java
URL: http://svn.apache.org/viewvc/incubator/sirona/trunk/agent/performance/aop/src/main/java/org/apache/sirona/aop/AbstractPerformanceInterceptor.java?rev=1539597&r1=1539596&r2=1539597&view=diff
==============================================================================
--- incubator/sirona/trunk/agent/performance/aop/src/main/java/org/apache/sirona/aop/AbstractPerformanceInterceptor.java (original)
+++ incubator/sirona/trunk/agent/performance/aop/src/main/java/org/apache/sirona/aop/AbstractPerformanceInterceptor.java Thu Nov  7 11:23:29 2013
@@ -180,7 +180,7 @@ public abstract class AbstractPerformanc
     protected static class SerializableMethod implements Serializable {
         protected final String clazz;
         protected final String method;
-        protected Method realMethod;
+        protected transient Method realMethod;
         protected final int hashCode;
 
         public SerializableMethod(final String clazz, final String method, final Method reflectMethod) {