Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IAsynchronousContentAdapter.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IAsynchronousContentAdapter.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IAsynchronousContentAdapter.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IAsynchronousContentAdapter.java
index 68d47a7d2..638c76689 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IAsynchronousContentAdapter.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/provisional/IAsynchronousContentAdapter.java
@@ -31,7 +31,7 @@ public interface IAsynchronousContentAdapter {
* @param context the context in which children have been requested
* @param monitor request monitor to report children to
*/
- public void retrieveChildren(Object parent, IPresentationContext context, IChildrenRequestMonitor result);
+ void retrieveChildren(Object parent, IPresentationContext context, IChildrenRequestMonitor result);
/**
* Asynchronously determines whether the given element contains children in the specified
@@ -43,6 +43,6 @@ public interface IAsynchronousContentAdapter {
* @param context the context in which children may exist
* @param monitor request monitor to report the result to
*/
- public void isContainer(Object element, IPresentationContext context, IContainerRequestMonitor result);
+ void isContainer(Object element, IPresentationContext context, IContainerRequestMonitor result);
}

Back to the top