Skip to content

Commit bcbff27

Browse files
SmartyAnshpivovarit
authored andcommitted
BAEL-2846 - JDIExample renamed to JDIExampleDebuggee (eugenp#7636)
1 parent 3a5f594 commit bcbff27

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

java-jdi/src/main/java/com/baeldung/jdi/JDIExample.java renamed to java-jdi/src/main/java/com/baeldung/jdi/JDIExampleDebuggee.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.baeldung.jdi;
22

3-
public class JDIExample {
3+
public class JDIExampleDebuggee {
44

55
public static void main(String[] args) {
66
String jpda = "Java Platform Debugger Architecture";

java-jdi/src/main/java/com/baeldung/jdi/JDIExampleDebugger.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ public void enableStepRequest(VirtualMachine vm, BreakpointEvent event) {
123123
public static void main(String[] args) throws Exception {
124124

125125
JDIExampleDebugger debuggerInstance = new JDIExampleDebugger();
126-
debuggerInstance.setDebugClass(JDIExample.class);
126+
debuggerInstance.setDebugClass(JDIExampleDebuggee.class);
127127
int[] breakPoints = {6, 9};
128128
debuggerInstance.setBreakPointLines(breakPoints);
129129
VirtualMachine vm = null;

0 commit comments

Comments
 (0)