From 51cf30f09da5854668306e279d7264ecfabe1247 Mon Sep 17 00:00:00 2001 From: Randy Rohrbach Date: Mon, 9 Feb 2009 21:03:09 +0000 Subject: [PATCH] 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 --- .../eclipse/cdt/debug/ui/memory/search/FindReplaceDialog.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/memory/org.eclipse.cdt.debug.ui.memory.search/src/org/eclipse/cdt/debug/ui/memory/search/FindReplaceDialog.java b/memory/org.eclipse.cdt.debug.ui.memory.search/src/org/eclipse/cdt/debug/ui/memory/search/FindReplaceDialog.java index 0f9da6806be..57fdb03c6b2 100644 --- a/memory/org.eclipse.cdt.debug.ui.memory.search/src/org/eclipse/cdt/debug/ui/memory/search/FindReplaceDialog.java +++ b/memory/org.eclipse.cdt.debug.ui.memory.search/src/org/eclipse/cdt/debug/ui/memory/search/FindReplaceDialog.java @@ -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 ) {