提交 2b0fa303 authored 作者: Thomas Mueller's avatar Thomas Mueller

Rename the overloaded method "isGeometry" to "isGeometryClass" to avoid confusion.

上级 e48c68e5
......@@ -864,7 +864,7 @@ public class DataType {
} else if (Object[].class.isAssignableFrom(x)) {
// this includes String[] and so on
return Value.ARRAY;
} else if (isGeometry(x)) {
} else if (isGeometryClass(x)) {
return Value.GEOMETRY;
} else {
return Value.JAVA_OBJECT;
......@@ -967,7 +967,7 @@ public class DataType {
* @param x the class
* @return true if it is a Geometry class
*/
public static boolean isGeometry(Class<?> x) {
public static boolean isGeometryClass(Class<?> x) {
if (x == null || GEOMETRY_CLASS == null) {
return false;
}
......@@ -984,7 +984,7 @@ public class DataType {
if (x == null) {
return false;
}
return isGeometry(x.getClass());
return isGeometryClass(x.getClass());
}
/**
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论