初始化

This commit is contained in:
hukekuan@163.com 2018-03-12 11:43:29 +08:00
parent 8a450864b8
commit 1b3386514e

View File

@ -43,7 +43,7 @@ public class FeatureUtilities {
*/ */
public static <T extends BaseFeature> String JavaBean2Json(T t,String featureIndex) public static <T extends BaseFeature> String JavaBean2Json(T t,String featureIndex)
throws IOException { throws IOException {
SimpleFeature simpleFeature =t.javaBean2SimpleFeature("featureIndex"); SimpleFeature simpleFeature =t.javaBean2SimpleFeature(featureIndex);
return Feature2Json(simpleFeature); return Feature2Json(simpleFeature);
} }