I have set 'Comments' to be important for Java source compares
so that I don't miss any important documentation any developer
has entered in the file.
However, I am getting false-positives due to tab/space differences
within a multi-line Java comment:
i.e. one version of the file has:
19 - four spaces
20 - 1 tab then 1 space
21 - 1 tab then 1 space
22 - 1 tab then 1 space
while the other version has had its tabs converted to four spaces:
19 - four spaces
20 - five spaces
21 - five spaces
22 - five spaces
Any suggestions on how to handle this?
so that I don't miss any important documentation any developer
has entered in the file.
However, I am getting false-positives due to tab/space differences
within a multi-line Java comment:
Code:
lineno 19 /* 1) Template was deleted, or 20 * 2) Template was updated, or <- these three lines in highlighted red 21 * 3) Bogus record exists in DB <- but only difference is tab vs. space 22 */ <- before the '*' character
19 - four spaces
20 - 1 tab then 1 space
21 - 1 tab then 1 space
22 - 1 tab then 1 space
while the other version has had its tabs converted to four spaces:
19 - four spaces
20 - five spaces
21 - five spaces
22 - five spaces
Any suggestions on how to handle this?
Comment