We are currently using Beyond Compare 3.0, and I am very pleased with this. However, it would be great if I could easily point out an exception for a specific one-time case. This is necessary when I review some refactoring code. For instance:
Old code
doSomething(ConstantsInterface.FOOBAR);
New code:
doSomething(BetterEnumeration.FOOBAR);
In this case, I have hundreds of changes that I look at, which are essentially the same exact changes, and I just want to see the exceptions. It would be great if I could easily point out an exception that indicates that these two cases are equal. I know a way to do this in grammar, but it's tedious and cumbersome when there are ten or so exceptions.
Other tips?