I have a JTextPane that contains a predefined text block. I have a separate thread that highlights certain lines of the text and periodically removes the highlight.
I am highlighting using:
text.getHighLighter().addHighligh(start,end,highlighter)
and removing using text.getHighLighter().removeAllHighLights()
and i call text.revalidate()
after it.
Sometimes the highlights are not removed?!
Can someone see a potential issue that I am having?