Changeset 7560
- Timestamp:
- 01/20/11 13:22:56 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/components/bio-formats/src/loci/formats/in/ScreenReader.java
r7508 r7560 417 417 try { 418 418 Integer.parseInt(col); 419 return Character.isLetter(row.charAt(0));419 return col.length() <= 2 && Character.isLetter(row.charAt(0)); 420 420 } 421 421 catch (NumberFormatException e) { }
Note: See TracChangeset
for help on using the changeset viewer.