JAL-2349 TODO consider caching contactRanges from getContactRange to improve efficiency
authorJames Procter <j.procter@dundee.ac.uk>
Mon, 27 Feb 2023 18:51:21 +0000 (18:51 +0000)
committerJames Procter <j.procter@dundee.ac.uk>
Mon, 27 Feb 2023 18:51:21 +0000 (18:51 +0000)
src/jalview/datamodel/ContactListImpl.java

index beb557f..8e806e4 100644 (file)
@@ -41,6 +41,7 @@ public class ContactListImpl implements ContactListI
   @Override
   public ContactRange getRangeFor(int from_column, int to_column)
   {
+    // TODO: consider caching ContactRange for a particular call ?
     if (clist instanceof ContactListI)
     {
       // clist may implement getRangeFor in a more efficient way, so use theirs