Skip to content
Snippets Groups Projects
Commit ab88e816 authored by Lukas Stadler's avatar Lukas Stadler
Browse files

compare via Source.equals instead of identity in debugging source filter

parent c933f048
No related branches found
No related tags found
No related merge requests found
......@@ -79,7 +79,8 @@ public class RInstrumentation {
builder.tagIs(tag);
SourceSection fdns = fdn.getSourceSection();
builder.indexIn(fdns.getCharIndex(), fdns.getCharLength());
builder.sourceIs(fdns.getSource());
Source source = fdns.getSource();
builder.sourceIs(s -> source.equals(s));
return builder;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment