Question

My code is breaking because every time I try to recover from a previous revision of my code Subclipse keeps adding this weird notation/conments into my Javascript.

e.g.

    if (profanityCheck() == false)
<<<<<<< .working
    {
        var inputData = "";
        var newData = new Array();
=======

How do I stop it doing this?

Thanks

Was it helpful?

Solution

That generally indicates there's a conflict between the version of the file in your workspace and the version from the SVN you're trying to switch to.

To fix it Right-click -> Team -> Mark resolved, then select the option that makes the most sense (probably use the incoming version of the file).

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top