@@ -54,11 +54,13 @@ public class Breakpoint implements IBreakpoint {
5454 this (vm , eventHub , className , lineNumber , hitCount , null , suspendAllThreads );
5555 }
5656
57- Breakpoint (VirtualMachine vm , IEventHub eventHub , String className , int lineNumber , int hitCount , String condition , boolean suspendAllThreads ) {
57+ Breakpoint (VirtualMachine vm , IEventHub eventHub , String className , int lineNumber , int hitCount ,
58+ String condition , boolean suspendAllThreads ) {
5859 this (vm , eventHub , className , lineNumber , hitCount , condition , null , suspendAllThreads );
5960 }
6061
61- Breakpoint (VirtualMachine vm , IEventHub eventHub , String className , int lineNumber , int hitCount , String condition , String logMessage , boolean suspendAllThreads ) {
62+ Breakpoint (VirtualMachine vm , IEventHub eventHub , String className , int lineNumber , int hitCount ,
63+ String condition , String logMessage , boolean suspendAllThreads ) {
6264 this .vm = vm ;
6365 this .eventHub = eventHub ;
6466 this .suspendAllThreads = suspendAllThreads ;
@@ -81,7 +83,8 @@ public class Breakpoint implements IBreakpoint {
8183 this .logMessage = logMessage ;
8284 }
8385
84- Breakpoint (VirtualMachine vm , IEventHub eventHub , JavaBreakpointLocation sourceLocation , int hitCount , String condition , String logMessage , boolean suspendAllThreads ) {
86+ Breakpoint (VirtualMachine vm , IEventHub eventHub , JavaBreakpointLocation sourceLocation , int hitCount ,
87+ String condition , String logMessage , boolean suspendAllThreads ) {
8588 this .vm = vm ;
8689 this .eventHub = eventHub ;
8790 this .sourceLocation = sourceLocation ;
0 commit comments