Changeset 711
- Timestamp:
- May 29, 2008, 5:51:58 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/base1/se.lu.onk/trunk/BaseFile/src/basefile/BASEFileReader.java
r664 r711 137 137 throws BASEFileException, IOException 138 138 { 139 section = readSection(false); 139 140 while (section != null && !section.isType("spots")) 140 141 { 141 142 section = readSection(false); 142 143 } 143 return new BASEFileSpotSection<R, S>(section);144 return (section == null) ? null : new BASEFileSpotSection<R, S>(section); 144 145 } 145 146 146 147 /** 147 * TODO: Write javadoc for read SpotSection()148 * TODO: Write javadoc for readAssaySection() 148 149 * @param <R> 149 150 * @param <S>
Note: See TracChangeset
for help on using the changeset viewer.