Anze Zagar commented on Bug JENKINS-11752

Suggested temporary fix (until JENKINS-13816 allows better way of doing this):

— src/main/java/hudson/plugins/ansicolor/AnsiColorNote.java (revision 36259)
+++ src/main/java/hudson/plugins/ansicolor/AnsiColorNote.java (working copy)
@@ -65,6 +65,7 @@
*/
@Override
public ConsoleAnnotator annotate(Object context, MarkupText text, int charPos) {
+ if (this.data.contains(ConsoleNote.PREAMBLE_STR)) return null;
try {
String colorizedData = colorize(StringEscapeUtils.escapeHtml(this.data), this.getColorMap());
if (! colorizedData.contentEquals(this.data)) {

This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira

--
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Reply via email to