Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IColumnPresentationFactory.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IColumnPresentationFactory.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IColumnPresentationFactory.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IColumnPresentationFactory.java
index d32a2e371..c5dcc08c9 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IColumnPresentationFactory.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/provisional/IColumnPresentationFactory.java
@@ -26,7 +26,7 @@ public interface IColumnPresentationFactory {
* @param element the input element
* @return column presentation or <code>null</code>
*/
- public IColumnPresentation createColumnPresentation(IPresentationContext context, Object element);
+ IColumnPresentation createColumnPresentation(IPresentationContext context, Object element);
/**
* Returns the type of column presentation to be used for the given context and object
@@ -37,5 +37,5 @@ public interface IColumnPresentationFactory {
* @param element input element
* @return column presentation id or <code>null</code>
*/
- public String getColumnPresentationId(IPresentationContext context, Object element);
+ String getColumnPresentationId(IPresentationContext context, Object element);
}

Back to the top