Dave Jarvis' Repositories

git clone https://repo.autonoma.ca/repo/keenwrite.git

Remove documentation references to HtmlPanelImpl

AuthorDaveJarvis <email>
Date2021-11-06 19:19:19 GMT-0700
Commit509caf7c1730c4313455948d430ba1d8dfd31351
Parentc4ad36d
Delta5 lines added, 6 lines removed, 1-line decrease
src/main/java/com/keenwrite/ui/heuristics/DocumentStatistics.java
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.