62611aee7834cc796ebe3dfd6cbebb38331f784b
Files Diff
- Added: 6
- Removed: 2
- Renamed: 0
- Modified: 70
Refactorings reported:
Refactoring Name | Occurences | ||
---|---|---|---|
Rename Method | 6 | ||
Rename Method protected updateVariables(threadId long, frameIndex int) : void renamed to protected refreshVariables(threadId long, frameIndex int) : void in class org.eclipse.che.plugin.debugger.ide.debug.DebuggerPresenter | From | To | |
Rename Method private updateWatchExpressions(threadId long, frameIndex int) : void renamed to private refreshWatchExpressions(threadId long, frameIndex int) : void in class org.eclipse.che.plugin.debugger.ide.debug.DebuggerPresenter | From | To | |
Rename Method public shouldShowAndNavigateByThreadDump() : void renamed to public shouldShowAndNavigateByAllThread() : void in class org.eclipse.che.selenium.debugger.ThreadDumpTest | From | To | |
Rename Method protected updateBreakpoints() : void renamed to private refreshBreakpoints() : void in class org.eclipse.che.plugin.debugger.ide.debug.DebuggerPresenter | From | To | |
Rename Method protected updateThreadDump() : void renamed to protected refreshView() : void in class org.eclipse.che.plugin.debugger.ide.debug.DebuggerPresenter | From | To | |
Rename Method public makeBreakpointConditional(fileName String, lineNumber int, condition String) : void renamed to public configureBreakpoint(fileName String, lineNumber int, breakpointConfiguration BreakpointConfiguration) : void in class org.eclipse.che.selenium.pageobject.debug.DebugPanel | From | To | |
Change Parameter Type | 2 | ||
Change Parameter Type event : DebuggerEventDto to event : DebuggerEvent in method private onEventListReceived(event DebuggerEvent) : void in class org.eclipse.che.plugin.debugger.ide.debug.AbstractDebugger | From | To | |
Change Parameter Type condition : String to breakpointConfiguration : BreakpointConfiguration in method public BreakpointImpl(location Location, enabled boolean, breakpointConfiguration BreakpointConfiguration) in class org.eclipse.che.api.debug.shared.model.impl.BreakpointImpl | From | To | |
Move Method | 1 | ||
Move Method public getCondition() : String from class org.eclipse.che.api.debug.shared.model.impl.BreakpointImpl to public getCondition() : String from class org.eclipse.che.api.debug.shared.model.impl.BreakpointConfigurationImpl | From | To | |
Rename Variable | 3 | ||
Rename Variable breakPointRequest : EventRequest to request : BreakpointRequest in method public addBreakpoint(breakpoint Breakpoint) : void in class org.eclipse.che.plugin.jdb.server.JavaDebugger | From | To | |
Rename Variable expression : String to conf : BreakpointConfiguration in method public addBreakpoint(breakpoint Breakpoint) : void in class org.eclipse.che.plugin.jdb.server.JavaDebugger | From | To | |
Rename Variable stackFrameDump : StackFrameDump to threadState : ThreadState in method public onSelectedFrame(frameIndex int) : void in class org.eclipse.che.plugin.debugger.ide.debug.DebuggerPresenter | From | To | |
Change Return Type | 9 | ||
Change Return Type void to Promise<Void> in method public addBreakpoint(breakpoint Breakpoint) : Promise<Void> in class org.eclipse.che.plugin.debugger.ide.debug.AbstractDebugger | From | To | |
Change Return Type void to Promise<Void> in method public deleteAllBreakpoints() : Promise<Void> in class org.eclipse.che.ide.debug.Debugger | From | To | |
Change Return Type void to Promise<Void> in method public deleteBreakpoint(breakpoint Breakpoint) : Promise<Void> in class org.eclipse.che.plugin.debugger.ide.debug.AbstractDebugger | From | To | |
Change Return Type Promise<List<BreakpointDto>> to Promise<List<? extends Breakpoint>> in method public getAllBreakpoints() : Promise<List<? extends Breakpoint>> in class org.eclipse.che.plugin.debugger.ide.debug.AbstractDebugger | From | To | |
Change Return Type void to Promise<Void> in method public deleteAllBreakpoints() : Promise<Void> in class org.eclipse.che.plugin.debugger.ide.debug.AbstractDebugger | From | To | |
Change Return Type void to Promise<Void> in method public addBreakpoint(breakpoint Breakpoint) : Promise<Void> in class org.eclipse.che.plugin.gdb.ide.GdbDebugger | From | To | |
Change Return Type void to Promise<Void> in method public addBreakpoint(breakpoint Breakpoint) : Promise<Void> in class org.eclipse.che.ide.debug.Debugger | From | To | |
Change Return Type Promise<List<BreakpointDto>> to Promise<List<? extends Breakpoint>> in method public getAllBreakpoints() : Promise<List<? extends Breakpoint>> in class org.eclipse.che.ide.debug.Debugger | From | To | |
Change Return Type void to Promise<Void> in method public deleteBreakpoint(breakpoint Breakpoint) : Promise<Void> in class org.eclipse.che.ide.debug.Debugger | From | To | |
Move Attribute | 1 | ||
Move Attribute private condition : String from class org.eclipse.che.api.debug.shared.model.impl.BreakpointImpl to private condition : String from class org.eclipse.che.api.debug.shared.model.impl.BreakpointConfigurationImpl | From | To | |
Rename Class | 1 | ||
Rename Class org.eclipse.ThreadDumpTest2 renamed to org.eclipse.SuspendPolicyTest | From | To | |
Replace Variable With Attribute | 1 | ||
Replace Variable With Attribute js : JavascriptExecutor to seleniumWebDriver : SeleniumWebDriver in method private getDataAboutDebugSessionFromStorage() : String in class org.eclipse.che.selenium.debugger.NodeJsDebugTest | From | To | |
Rename Attribute | 1 | ||
Rename Attribute currentLocation : Location to suspendEventDto : SuspendEventDto in class org.eclipse.che.plugin.debugger.ide.debug.AbstractDebugger | From | To | |
Change Variable Type | 4 | ||
Change Variable Type breakPointRequest : EventRequest to request : BreakpointRequest in method public addBreakpoint(breakpoint Breakpoint) : void in class org.eclipse.che.plugin.jdb.server.JavaDebugger | From | To | |
Change Variable Type stackFrameDump : StackFrameDump to threadState : ThreadState in method public onSelectedFrame(frameIndex int) : void in class org.eclipse.che.plugin.debugger.ide.debug.DebuggerPresenter | From | To | |
Change Variable Type expression : String to conf : BreakpointConfiguration in method public addBreakpoint(breakpoint Breakpoint) : void in class org.eclipse.che.plugin.jdb.server.JavaDebugger | From | To | |
Change Variable Type js : JavascriptExecutor to seleniumWebDriver : SeleniumWebDriver in method private getDataAboutDebugSessionFromStorage() : String in class org.eclipse.che.selenium.debugger.NodeJsDebugTest | From | To | |
Extract Method | 3 | ||
Extract Method private isSameSelection(threadId long, frameIndex int) : boolean extracted from private evaluateWatchExpression(expression WatchExpression, threadId long, frameIndex int) : void in class org.eclipse.che.plugin.debugger.ide.debug.DebuggerPresenter | From | To | |
Extract Method protected refreshView(threadId long) : void extracted from protected updateThreadDump() : void in class org.eclipse.che.plugin.debugger.ide.debug.DebuggerPresenter | From | To | |
Change Attribute Type | 3 | ||
Change Attribute Type currentLocation : Location to suspendEventDto : SuspendEventDto in class org.eclipse.che.plugin.debugger.ide.debug.AbstractDebugger | From | To | |
Change Attribute Type threadDump : List<? extends ThreadState> to threadDump : Map<Long,? extends ThreadState> in class org.eclipse.che.plugin.debugger.ide.debug.DebuggerPresenter | From | To | |
Change Attribute Type breakpointCondition : TextArea to breakpointCondition : TextBox in class org.eclipse.che.plugin.debugger.ide.debug.breakpoint.BreakpointConfigurationViewImpl | From | To | |
Rename Parameter | 1 | ||
Rename Parameter condition : String to breakpointConfiguration : BreakpointConfiguration in method public BreakpointImpl(location Location, enabled boolean, breakpointConfiguration BreakpointConfiguration) in class org.eclipse.che.api.debug.shared.model.impl.BreakpointImpl | From | To |