This commit is contained in:
Looly
2023-12-29 20:55:55 +08:00
parent 91178e45a8
commit 6facfcfc4d
101 changed files with 271 additions and 307 deletions

View File

@@ -12,7 +12,6 @@
package org.dromara.hutool.extra.aop.engine.spring;
import org.dromara.hutool.core.exception.ExceptionUtil;
import org.dromara.hutool.extra.aop.Aspect;
import org.dromara.hutool.extra.aop.SimpleInterceptor;
import org.springframework.cglib.proxy.MethodInterceptor;

View File

@@ -238,7 +238,7 @@ public class ManagementUtil {
* 获取Java虚拟机中的{@link MemoryPoolMXBean}列表<br>
* The Java virtual machine can have one or more memory pools. It may add or remove memory pools during execution.
*
* @return a list of <tt>MemoryPoolMXBean</tt> objects.
* @return a list of <b>MemoryPoolMXBean</b> objects.
*/
public static List<MemoryPoolMXBean> getMemoryPoolMXBeans() {
return ManagementFactory.getMemoryPoolMXBeans();
@@ -248,7 +248,7 @@ public class ManagementUtil {
* 获取Java虚拟机中的{@link MemoryManagerMXBean}列表<br>
* The Java virtual machine can have one or more memory managers. It may add or remove memory managers during execution.
*
* @return a list of <tt>MemoryManagerMXBean</tt> objects.
* @return a list of <b>MemoryManagerMXBean</b> objects.
*/
public static List<MemoryManagerMXBean> getMemoryManagerMXBeans() {
return ManagementFactory.getMemoryManagerMXBeans();

View File

@@ -26,7 +26,6 @@ import com.google.zxing.common.GlobalHistogramBinarizer;
import com.google.zxing.common.HybridBinarizer;
import java.awt.Image;
import java.awt.image.BufferedImage;
import java.util.HashMap;
import java.util.Map;

View File

@@ -20,8 +20,6 @@ import com.chenlb.mmseg4j.ComplexSeg;
import com.chenlb.mmseg4j.Dictionary;
import com.chenlb.mmseg4j.MMSeg;
import java.io.StringReader;
/**
* mmseg4j分词引擎实现<br>
* 项目地址https://github.com/chenlb/mmseg4j-core<br>

View File

@@ -12,7 +12,6 @@
package org.dromara.hutool.extra.ssh;
import org.dromara.hutool.core.util.CharsetUtil;
import org.dromara.hutool.extra.ssh.engine.sshj.SshjSftp;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Disabled;