Skip to content
Snippets Groups Projects
Commit dd328b52 authored by tjc's avatar tjc
Browse files

fix for lazy data when looking for duplicates

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@8482 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent ad7faa05
No related branches found
No related tags found
No related merge requests found
...@@ -441,7 +441,8 @@ public class FindAndReplace extends JFrame ...@@ -441,7 +441,8 @@ public class FindAndReplace extends JFrame
if(this_value_string == null) if(this_value_string == null)
continue; continue;
if(!newValues.contains(this_value_string)) if(!newValues.contains(this_value_string) ||
this_value_string.startsWith("LAZY LOADING")) // ignore lazy data not loaded yet
newValues.add(this_value_string); newValues.add(this_value_string);
else if(!delete) else if(!delete)
return true; return true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment