We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In
blinky-core/src/org/spideruci/analysis/dynamic/Blinksformer.java
Lines 149 to 151 in f7132da
String tmp = Profiler.entryClass; if(className.startsWith(tmp==null? " " : tmp)) { return shouldInstrument; }
The text was updated successfully, but these errors were encountered:
Good call. It should really be:
if (Profiler.entryClass != null && className.startsWith(Profiler.entryClass)) { ... }
Does that make sense? if it does, can you send out a Pull request to make this change? thanks!
Sorry, something went wrong.
lzccc
No branches or pull requests
In
blinky-core/src/org/spideruci/analysis/dynamic/Blinksformer.java
Lines 149 to 151 in f7132da
The text was updated successfully, but these errors were encountered: