BAEL-5947: Moving a project to a different package (#14054)

* Revert "feat: BAEL-5947 External Debugging with JMXTerm (#13847)"

This reverts commit cce2ed68a4.

* BAEL-5947: Moving a project to a different package
This commit is contained in:
Eugene Kovko
2023-05-19 21:29:10 +02:00
committed by GitHub
parent 9001813855
commit 1bf3e1e90c
11 changed files with 9 additions and 3 deletions

View File

@@ -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)

View File

@@ -1,6 +1,6 @@
package com.baeldung.jmxterm; package com.baeldung.jmxterm;
import static com.baeldung.jmxterm.RandomNumbergenerator.*; import static com.baeldung.jmxterm.RandomNumbergenerator.generateRandomNumber;
public class Player extends AbstractPlayerMBean { public class Player extends AbstractPlayerMBean {
private final String name; private final String name;

View File

@@ -1,6 +1,6 @@
package com.baeldung.jmxterm; 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; import org.junit.jupiter.api.Test;