BAEL-2846 - JDIExample renamed to JDIExampleDebuggee (#7636)

This commit is contained in:
Anshul Bansal 2019-08-25 21:22:38 +03:00 committed by Grzegorz Piwowarek
parent 3a5f594754
commit bcbff27129
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
package com.baeldung.jdi;
public class JDIExample {
public class JDIExampleDebuggee {
public static void main(String[] args) {
String jpda = "Java Platform Debugger Architecture";

View File

@ -123,7 +123,7 @@ public class JDIExampleDebugger {
public static void main(String[] args) throws Exception {
JDIExampleDebugger debuggerInstance = new JDIExampleDebugger();
debuggerInstance.setDebugClass(JDIExample.class);
debuggerInstance.setDebugClass(JDIExampleDebuggee.class);
int[] breakPoints = {6, 9};
debuggerInstance.setBreakPointLines(breakPoints);
VirtualMachine vm = null;