1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 08:55:25 +02:00

Just removed a few comments that should have been taken out before I reconciled before. This is just a continuation of the previous defect.

Randy
This commit is contained in:
Randy Rohrbach 2009-02-09 21:03:09 +00:00
parent c567450356
commit 51cf30f09d

View file

@ -904,8 +904,6 @@ public class FindReplaceDialog extends SelectionDialog
final BigInteger searchPhraseLength = BigInteger.valueOf(searchPhrase.getByteLength());
BigInteger range = start.subtract(end);
//BigInteger range = searchForward ? end.subtract(start) : start.subtract(end);
//BigInteger currentPosition = start;
BigInteger currentPosition = searchForward ? start : end.subtract(searchPhraseLength);
if ( range.compareTo(searchPhraseLength) >= 0 ) {