Skip to content

Commit

Permalink
TEIIDDES-1100 fixed minor error in row parsing logic
Browse files Browse the repository at this point in the history
  • Loading branch information
blafond committed Jan 2, 2013
1 parent 1f2f470 commit 3fc7a45
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ private Collection<String> getRowsFromLine(String str) {
String theString = str;

while( theString.length() > 0 ) {
if ( (str.indexOf(CR_1) > -1 || str.indexOf(CR_2) > -1) ) {
if ( (theString.indexOf(CR_1) > -1 || theString.indexOf(CR_2) > -1) ) {
int lf_1_index = theString.indexOf(CR_1);
int lf_2_index = theString.indexOf(CR_2);
if( lf_1_index > -1 && lf_2_index > lf_1_index) {
Expand Down

0 comments on commit 3fc7a45

Please sign in to comment.