annotation things
[jalview.git] / forester / java / src / org / forester / util / BasicTableParser.java
index 6592f17..2917a31 100644 (file)
@@ -93,9 +93,9 @@ public class BasicTableParser {
                     && ( !use_start_of_comment_line || !line.startsWith( start_of_comment_line ) ) ) {
                 saw_first_table = true;
                 if ( use_last_separator_only ) {
-                    String e[] = line.split( column_delimiter );
+                    final String e[] = line.split( column_delimiter );
                     final StringBuffer rest = new StringBuffer();
-                    for( int i = 0; i < e.length - 1; ++i ) {
+                    for( int i = 0; i < ( e.length - 1 ); ++i ) {
                         rest.append( e[ i ].trim() );
                     }
                     table.setValue( 0, row, rest.toString() );