This question has apparently been asked often, but the culprit seems to be line endings and whitespace in most cases.
However, I have a case where the line endings are also verifiably identical and there is no other whitespace in the conflicted portion. For example:
<<<<<<< HEAD
}
=======
}
>>>>>>> develop
And a text editor screenshot with line endings displayed:
both show ↓, which indicates a \n character - it would display ← for \r, and ↵ for \r\n.
There is literally no other character besides the identical }\n on both sides. Why is this detected as a conflict and how do I avoid it?
