https://issues.apache.org/bugzilla/show_bug.cgi?id=52664
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |NEW --- Comment #2 from [email protected] 2012-02-15 05:54:35 UTC --- You have checked a wrong code location. Please check the line 454 of the method "has7BitEncodingStrings", not the method "set7BitEncoding". Line 454 of the method "has7BitEncodingStrings()". public boolean has7BitEncodingStrings() { for(Chunk c : mainChunks.getAll()) { if(c instanceof StringChunk) { if( ((StringChunk)c).getType() == Types.ASCII_STRING ) { return true; } } } [Line 454] for(Chunk c : nameIdChunks.getAll()) { if(c instanceof StringChunk) { if( ((StringChunk)c).getType() == Types.ASCII_STRING ) { return true; } } } for(RecipientChunks rc : recipientChunks) { for(Chunk c : rc.getAll()) { if(c instanceof StringChunk) { if( ((StringChunk)c).getType() == Types.ASCII_STRING ) { return true; } } } } return false; } -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
