Skip to content
Snippets Groups Projects
Commit a3c807f7 authored by balaskoa's avatar balaskoa
Browse files

Restore original damage limits (modified in a prev. commit)


Signed-off-by: default avatarbalaskoa <jeno.balasko@ericsson.com>
parent 34d9ef85
No related branches found
No related tags found
No related merge requests found
......@@ -130,7 +130,7 @@ public final class TTCN3ReparseUpdater {
}
public final boolean envelopsDamage(Location location) {
if (location.getOffset() <= modificationStartOffset && location.getEndOffset() >= modificationEndOffset) {
if (location.getOffset() < modificationStartOffset && location.getEndOffset() > modificationEndOffset) {
return true;
}
......
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