mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
JdbcDialects改成内部类
This commit is contained in:
@@ -1,9 +0,0 @@
|
|||||||
package cn.hutool.core.util;
|
|
||||||
|
|
||||||
import java.util.Arrays;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
public class JdbcDialects {
|
|
||||||
private static final List<Number> DIALECTS =
|
|
||||||
Arrays.asList(1L, 2L, 3L);
|
|
||||||
}
|
|
@@ -271,6 +271,11 @@ public class ReflectUtilTest {
|
|||||||
Assert.assertArrayEquals(new int[0], intArray);
|
Assert.assertArrayEquals(new int[0], intArray);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static class JdbcDialects {
|
||||||
|
private static final List<Number> DIALECTS =
|
||||||
|
Arrays.asList(1L, 2L, 3L);
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void setFieldValueTest() {
|
public void setFieldValueTest() {
|
||||||
String fieldName = "DIALECTS";
|
String fieldName = "DIALECTS";
|
||||||
|
Reference in New Issue
Block a user