Skip to content

Commit

Permalink
java.lang.NoSuchMethodError - fix
Browse files Browse the repository at this point in the history
  • Loading branch information
williamniemiec committed May 21, 2021
1 parent 55ed9a8 commit df333c4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Binary file modified dist/7.x/executionflow-7.1.1.jar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -82,15 +82,15 @@ public aspect ConstructorHook extends RuntimeHook {
}

before(): insideTestedConstructor() {
/*if (!isValidConstructor(thisJoinPoint))
if (!isValidConstructor(thisJoinPoint))
return;

parseConstructorInfo(thisJoinPoint);

if (!wasConstructorAlreadyParsed() && hasSourceAndBinearyPath()) {
collectConstructor(thisJoinPoint);
markConstructorAsParsed();
}*/
}
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,15 +85,15 @@ public aspect MethodCallHook extends RuntimeHook {
if (isNativeMethod(getSignature(thisJoinPoint)) || !isValidSignature(thisJoinPoint))
return;

//collectInvoked(thisJoinPoint);
collectInvoked(thisJoinPoint);
}

before(): invokedMethodByTestedInvoker() {
if (!isMethod(thisJoinPoint) || isNativeMethod(getSignature(thisJoinPoint)) || !wasTestedInvokedCollected())
return;

//CallCollector callCollector = CallCollector.getInstance();
//callCollector.collectCall(extractMethodCalledSignature(thisJoinPoint), invoked);
CallCollector callCollector = CallCollector.getInstance();
callCollector.collectCall(extractMethodCalledSignature(thisJoinPoint), invoked);
}


Expand Down

0 comments on commit df333c4

Please sign in to comment.