Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jface.text/src/org/eclipse/jface/text/AbstractInformationControlManager.java')
-rw-r--r--org.eclipse.jface.text/src/org/eclipse/jface/text/AbstractInformationControlManager.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.jface.text/src/org/eclipse/jface/text/AbstractInformationControlManager.java b/org.eclipse.jface.text/src/org/eclipse/jface/text/AbstractInformationControlManager.java
index f5ee2396d13..a1af6b22e74 100644
--- a/org.eclipse.jface.text/src/org/eclipse/jface/text/AbstractInformationControlManager.java
+++ b/org.eclipse.jface.text/src/org/eclipse/jface/text/AbstractInformationControlManager.java
@@ -626,7 +626,7 @@ abstract public class AbstractInformationControlManager {
/**
* Tells whether the control takes focus when visible.
- *
+ *
* @return <code>true</code> if the control takes focus when visible, <code>false</code>
* otherwise
* @since 3.7
@@ -1264,7 +1264,7 @@ abstract public class AbstractInformationControlManager {
/**
* Tells whether internal data can be cleared on hide.
- *
+ *
* @return <code>true</code> if data can be cleared on hide
* @see #hideInformationControl()
* @since 3.6
@@ -1281,10 +1281,10 @@ abstract public class AbstractInformationControlManager {
*/
protected void showInformationControl(Rectangle subjectArea) {
fInformationControl.setVisible(true);
-
+
if (fInformationControl == null)
return; // could already be disposed if setVisible(..) runs the display loop
-
+
if (fTakesFocusWhenVisible)
fInformationControl.setFocus();

Back to the top