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

optimise

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@2163 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent b8bb9a4c
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* $Header: //tmp/pathsoft/artemis/uk/ac/sanger/artemis/io/SimpleDocumentEntry.java,v 1.2 2004-11-24 11:55:52 tjc Exp $
* $Header: //tmp/pathsoft/artemis/uk/ac/sanger/artemis/io/SimpleDocumentEntry.java,v 1.3 2004-12-24 14:00:53 tjc Exp $
*/
package uk.ac.sanger.artemis.io;
......@@ -35,7 +35,7 @@ import java.util.Vector;
* This class contains the methods common to all DocumentEntry objects.
*
* @author Kim Rutherford <kmr@sanger.ac.uk>
* @version $Id: SimpleDocumentEntry.java,v 1.2 2004-11-24 11:55:52 tjc Exp $
* @version $Id: SimpleDocumentEntry.java,v 1.3 2004-12-24 14:00:53 tjc Exp $
**/
abstract public class SimpleDocumentEntry
......@@ -972,7 +972,9 @@ abstract public class SimpleDocumentEntry
**/
private FeatureTable findFeatureTable()
{
for(int i = 0 ; i < line_groups.size() ; ++i)
final int line_groups_size = line_groups.size();
for(int i = 0; i < line_groups_size; ++i)
{
final LineGroup current_line_group = line_groups.elementAt(i);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment