remove tooltip text

This commit is contained in:
Ben Fry
2015-09-19 21:56:02 -04:00
parent a9c601b7e8
commit 0e8a90da2b
2 changed files with 9 additions and 1 deletions

View File

@@ -717,6 +717,10 @@ public class JavaTextArea extends JEditTextArea {
public void mouseEntered(MouseEvent me) {
// forward to standard listeners
for (MouseListener ml : mouseListeners) {
// investigating an NPE that keeps showing up here [fry]
// if (ml == null || me == null) {
// System.out.println(ml + " " + me);
// }
ml.mouseEntered(me);
}
}