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
Branches
No related tags found
No related merge requests found
...@@ -79,7 +79,8 @@ public class RInstrumentation { ...@@ -79,7 +79,8 @@ public class RInstrumentation {
builder.tagIs(tag); builder.tagIs(tag);
SourceSection fdns = fdn.getSourceSection(); SourceSection fdns = fdn.getSourceSection();
builder.indexIn(fdns.getCharIndex(), fdns.getCharLength()); builder.indexIn(fdns.getCharIndex(), fdns.getCharLength());
builder.sourceIs(fdns.getSource()); Source source = fdns.getSource();
builder.sourceIs(s -> source.equals(s));
return builder; return builder;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment