|
1 | 1 | /* |
2 | | - * Copyright (c) 1998, 2024, Oracle and/or its affiliates. All rights reserved. |
| 2 | + * Copyright (c) 1998, 2025, Oracle and/or its affiliates. All rights reserved. |
3 | 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 | 4 | * |
5 | 5 | * This code is free software; you can redistribute it and/or modify it |
@@ -251,13 +251,13 @@ ExceptionRequest createExceptionRequest(ReferenceType refType, |
251 | 251 | * after the first step is detected. Thus a next line method |
252 | 252 | * would do the following: |
253 | 253 | * <pre>{@code |
254 | | - * EventRequestManager mgr = myVM.{@link VirtualMachine#eventRequestManager eventRequestManager}(); |
| 254 | + * EventRequestManager mgr = myVM.eventRequestManager(); |
255 | 255 | * StepRequest request = mgr.createStepRequest(myThread, |
256 | | - * StepRequest.{@link StepRequest#STEP_LINE STEP_LINE}, |
257 | | - * StepRequest.{@link StepRequest#STEP_OVER STEP_OVER}); |
258 | | - * request.{@link EventRequest#addCountFilter addCountFilter}(1); // next step only |
| 256 | + * StepRequest.STEP_LINE, |
| 257 | + * StepRequest.STEP_OVER); |
| 258 | + * request.addCountFilter(1); // next step only |
259 | 259 | * request.enable(); |
260 | | - * myVM.{@link VirtualMachine#resume resume}(); |
| 260 | + * myVM.resume(); |
261 | 261 | * }</pre> |
262 | 262 | * |
263 | 263 | * @param thread the thread in which to step |
@@ -382,7 +382,7 @@ StepRequest createStepRequest(ThreadReference thread, |
382 | 382 | * Iterator iter = requestManager.stepRequests().iterator(); |
383 | 383 | * while (iter.hasNext()) { |
384 | 384 | * requestManager.deleteEventRequest(iter.next()); |
385 | | - * } |
| 385 | + * } |
386 | 386 | * </PRE> |
387 | 387 | * may cause a {@link java.util.ConcurrentModificationException}. |
388 | 388 | * Instead use |
|
0 commit comments