| | import com.keenwrite.events.DocumentChangedEvent; |
| | import com.keenwrite.preferences.Workspace; |
| | -import com.keenwrite.preview.HtmlPanelImpl; |
| | import com.whitemagicsoftware.wordcount.TokenizerException; |
| | import javafx.beans.property.IntegerProperty; |
 |
| | * Called when the hash code for the current document changes. This happens |
| | * when non-collapsable-whitespace is added to the document. When the |
| | - * document is sent to {@link HtmlPanelImpl} for rendering, the parsed document |
| | - * is converted to text. If that text differs in its hash code, then this |
| | - * method is called. The implication is that all variables and executable |
| | - * statements have been replaced. An event bus subscriber is used so that |
| | - * text processing occurs outside of the UI processing threads. |
| | + * document is sent for rendering, the parsed document is converted to text. |
| | + * If that text differs in its hash code, then this method is called. The |
| | + * implication is that all variables and executable statements have been |
| | + * replaced. An event bus subscriber is used so that text processing occurs |
| | + * outside the UI processing threads. |
| | * |
| | * @param event Container for the document text that has changed. |