plugins/org.symbian.tools.tmw.debug/src/org/symbian/tools/tmw/debug/internal/launch/WRTProjectWorkspaceBridge.java
changeset 472 bd9f2d7c64a6
parent 471 06589bf52fa7
child 484 f5df819c1852
--- a/plugins/org.symbian.tools.tmw.debug/src/org/symbian/tools/tmw/debug/internal/launch/WRTProjectWorkspaceBridge.java	Mon Aug 23 09:55:57 2010 -0700
+++ b/plugins/org.symbian.tools.tmw.debug/src/org/symbian/tools/tmw/debug/internal/launch/WRTProjectWorkspaceBridge.java	Mon Aug 23 10:30:05 2010 -0700
@@ -62,7 +62,7 @@
         this.project = project;
         this.resourceManager = new ResourceManager();
         this.sourceLocator = new WebApplicationSourceLocator(resourceManager);
-        breakpointHandler = new WorkspaceBreakpointHandler(debugTargetImpl, resourceManager);
+        breakpointHandler = new WorkspaceBreakpointHandler(debugTargetImpl);
         ILaunch launch = debugTargetImpl.getLaunch();
         try {
             sourceLocator.initializeDefaults(launch.getLaunchConfiguration());
@@ -111,9 +111,7 @@
                     Collection<ChromiumLineBreakpoint> breakpoints = new ArrayList<ChromiumLineBreakpoint>(
                             markers.length);
                     for (IMarker marker : markers) {
-                        // If it is not ChromiumLineBreakpoint -
-                        // something's gone horribly wrong. Better get
-                        // ClassCastException
+                        // If it is not ChromiumLineBreakpoint - something's gone horribly wrong. Better get ClassCastException
                         ChromiumLineBreakpoint breakpoint = (ChromiumLineBreakpoint) DebugPlugin.getDefault()
                                 .getBreakpointManager().getBreakpoint(marker);
                         breakpointHandler.breakpointAdded(breakpoint);