Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.tips.core/src/org/eclipse/tips/core/IHtmlTip.java')
-rw-r--r--org.eclipse.tips.core/src/org/eclipse/tips/core/IHtmlTip.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.tips.core/src/org/eclipse/tips/core/IHtmlTip.java b/org.eclipse.tips.core/src/org/eclipse/tips/core/IHtmlTip.java
index b6373111a..f0cc9118d 100644
--- a/org.eclipse.tips.core/src/org/eclipse/tips/core/IHtmlTip.java
+++ b/org.eclipse.tips.core/src/org/eclipse/tips/core/IHtmlTip.java
@@ -24,7 +24,7 @@ public interface IHtmlTip {
* @return the HMTL of the tip
* @see #getImage()
*/
- public String getHTML();
+ String getHTML();
/**
* Returns the {@link TipImage}.
@@ -32,6 +32,6 @@ public interface IHtmlTip {
* @return a TipImage with information about the image or <code>null</code> if the this information cannot be created
* @see #getHTML()
*/
- public TipImage getImage();
+ TipImage getImage();
}

Back to the top