JAL-2349 TODO consider caching contactRanges from getContactRange to improve efficiency
[jalview.git] / 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