@@ -979,8 +979,8 @@ private static JNIObjectHandle shouldIncludeMethod(JNIEnvironment jni, JNIObject
979
979
/*
980
980
* We have to find a class that captures a lambda function so it can be registered by the agent.
981
981
* We have to get SerializedLambda instance first. After that we get lambda capturing class from
982
- * that instance using JNIHandleSet#getFieldId to get field id and JNIObjectHandle#invoke on to get that field value.
983
- * We get name of the capturing class and tell the agent to register it.
982
+ * that instance using JNIHandleSet#getFieldId to get field id and JNIObjectHandle#invoke on to
983
+ * get that field value. We get name of the capturing class and tell the agent to register it.
984
984
*/
985
985
private static boolean registerCapturingClass (JNIEnvironment jni , Breakpoint bp , InterceptedState state ) {
986
986
JNIObjectHandle serializedLambdaInstance = getObjectArgument (0 );
@@ -996,14 +996,14 @@ private static boolean registerCapturingClass(JNIEnvironment jni, Breakpoint bp,
996
996
997
997
if (tracer != null ) {
998
998
tracer .traceCall ("serialization" ,
999
- "SerializedLambda.readResolve" ,
1000
- null ,
1001
- null ,
1002
- null ,
1003
- validObjectStreamClassInstance ,
1004
- state .getFullStackTraceOrNull (),
1005
- /*- String serializationTargetClass, String customTargetConstructorClass */
1006
- capturingClassName , null );
999
+ "SerializedLambda.readResolve" ,
1000
+ null ,
1001
+ null ,
1002
+ null ,
1003
+ validObjectStreamClassInstance ,
1004
+ state .getFullStackTraceOrNull (),
1005
+ /*- String serializationTargetClass, String customTargetConstructorClass */
1006
+ capturingClassName , null );
1007
1007
1008
1008
guarantee (!testException (jni ));
1009
1009
}
0 commit comments