(boolean quoteSubject)
| 166 | //#endif |
| 167 | } |
| 168 | public String quoteString(boolean quoteSubject){ |
| 169 | StringBuffer out=new StringBuffer(); |
| 170 | if (subject!=null && quoteSubject) |
| 171 | if (subject.length()>0) |
| 172 | out.append(subject).append("\n"); |
| 173 | out.append(toString()); |
| 174 | return clearNick(out); |
| 175 | } |
| 176 | |
| 177 | public static String clearNick(StringBuffer msgBuffer) { |
| 178 | int i = 0; |
no test coverage detected