String str = "WWUtil.isEmpty(source)";
OurShapefileLoaderPoint._LOGGER_.severe(str);
throw new Exception(str);
}
Shapefile shp = null;
try
{
shp = new Shapefile(source);
if (shp == null)
{
String str = "shp == null";
OurShapefileLoaderPoint._LOGGER_.severe(str);
throw new Exception(str);
}
String strTypeShape = shp.getShapeType();
if (Shapefile.isMultiPointType(strTypeShape))
{
alt = OurShapefileLoaderPoint._s_getRecordsMultiPointUnique_(shp);
}