Ignore:
Timestamp:
01/09/13 13:00:20 (11 years ago)
Author:
psniegowski
Message:

Simplify f0 class organization.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • java/main/src/main/java/com/framsticks/parsers/F0Parser.java

    r78 r79  
    99import java.util.List;
    1010
    11 import com.framsticks.model.F0Genotype;
     11import com.framsticks.model.Model;
    1212import static com.framsticks.params.SimpleAbstractAccess.*;
    1313
     
    109109
    110110                        /** If no 'm' (Model) line was found, than simulate it on the beginning of the result.*/
    111                         if (result.isEmpty() || !(result.get(0) instanceof F0Genotype)) {
     111                        if (result.isEmpty() || !(result.get(0) instanceof Model)) {
    112112                                result.add(0, processLine("m:"));
    113113                        }
Note: See TracChangeset for help on using the changeset viewer.