Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/update/DefaultModelProxyFactory.java')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/update/DefaultModelProxyFactory.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/update/DefaultModelProxyFactory.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/update/DefaultModelProxyFactory.java
index 0856e4663..c64d95cdf 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/update/DefaultModelProxyFactory.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/update/DefaultModelProxyFactory.java
@@ -58,7 +58,7 @@ public class DefaultModelProxyFactory implements IModelProxyFactory {
if (IDebugUIConstants.ID_EXPRESSION_VIEW.equals(id)) {
if (element instanceof IExpressionManager) {
return new ExpressionManagerModelProxy();
- }
+ }
if (element instanceof IWatchExpression) {
return new DefaultWatchExpressionModelProxy((IWatchExpression)element);
}
@@ -84,7 +84,7 @@ public class DefaultModelProxyFactory implements IModelProxyFactory {
return new BreakpointContainerProxy((IBreakpointContainer)element);
}
}
-
+
if (context instanceof MemoryViewPresentationContext)
{
if (((MemoryViewPresentationContext)context).getRendering() instanceof AbstractAsyncTableRendering)
@@ -93,7 +93,7 @@ public class DefaultModelProxyFactory implements IModelProxyFactory {
return new MemoryBlockProxy((IMemoryBlock)element);
}
}
-
+
return null;
}

Back to the top