// Check for RNA secondary structure
{
// System.out.println(annotations[i].secondaryStructure);
+ // TODO: 2.8.2 should this ss symbol validation check be a function in RNA/ResidueProperties ?
if (annotations[i].secondaryStructure == '('
|| annotations[i].secondaryStructure == '['
|| annotations[i].secondaryStructure == '<'
// annotations[i].displayCharacter.charAt(0)==annotations[i].secondaryStructure
firstChar != ' '
&& firstChar != '$'
- && firstChar != '�' // JBPNote should explicitly express as
- // unicode number to avoid source code
- // translation problems
+ && firstChar != 0xCE
&& firstChar != '('
&& firstChar != '['
&& firstChar != '>'
iconOffset, startRes, column, validRes, validEnd);
break;
- case '�':
+ case 0xCE:
drawSheetAnnot(g, row_annotations, lastSSX, x, y,
iconOffset, startRes, column, validRes, validEnd);
break;