BAEL-5947: Moving a project to a different package (#14054)
* Revert "feat: BAEL-5947 External Debugging with JMXTerm (#13847)"
This reverts commit ae04ab2510
.
* BAEL-5947: Moving a project to a different package
This commit is contained in:
parent
fcd357036f
commit
2091146702
|
@ -1 +1,7 @@
|
|||
## Relevant Articles
|
||||
## Core Java Performance
|
||||
|
||||
This module contains articles about performance of Java applications
|
||||
|
||||
### Relevant Articles:
|
||||
- [Possible Root Causes for High CPU Usage in Java](https://www.baeldung.com/java-high-cpu-usage-causes)
|
||||
- [External Debugging With JMXTerm](https://www.baeldung.com/java-jmxterm-external-debugging)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package com.baeldung.jmxterm;
|
||||
|
||||
import static com.baeldung.jmxterm.RandomNumbergenerator.*;
|
||||
import static com.baeldung.jmxterm.RandomNumbergenerator.generateRandomNumber;
|
||||
|
||||
public class Player extends AbstractPlayerMBean {
|
||||
private final String name;
|
|
@ -1,6 +1,6 @@
|
|||
package com.baeldung.jmxterm;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.*;
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
Loading…
Reference in New Issue