Changeset 30310 in osm for applications/editors/josm/plugins/opendata/src
- Timestamp:
- 2014-02-28T11:55:38+01:00 (11 years ago)
- Location:
- applications/editors/josm/plugins/opendata/src/org
- Files:
-
- 1 added
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/opendata/src/org/geotools/data/shapefile/files/TabFiles.java
r30286 r30310 14 14 // You should have received a copy of the GNU General Public License 15 15 // along with this program. If not, see <http://www.gnu.org/licenses/>. 16 package org.geotools.data.shapefile; 17 18 import static org.geotools.data.shapefile.ShpFileType.SHP; 16 package org.geotools.data.shapefile.files; 17 18 import static org.geotools.data.shapefile.files.ShpFileType.SHP; 19 19 20 20 import java.io.File; … … 175 175 return files[0].toURI().toURL(); 176 176 } catch (MalformedURLException e) { 177 ShapefileDataStoreFactory.LOGGER.log(Level.SEVERE, "", e); 177 //ShapefileDataStoreFactory.LOGGER().log(Level.SEVERE, "", e); 178 178 } 179 179 } … … 209 209 StringBuilder sb = new StringBuilder("The following locker still has a lock: "); 210 210 sb.append(locker); 211 ShapefileDataStoreFactory.LOGGER.log(logLevel, sb.toString(), locker.getTrace()); 211 //ShapefileDataStoreFactory.LOGGER().log(logLevel, sb.toString(), locker.getTrace()); 212 212 } 213 213 } -
applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/io/geographic/TabReader.java
r29014 r30310 25 25 import java.util.List; 26 26 27 import org.geotools.data.shapefile.TabFiles; 27 import org.geotools.data.shapefile.files.TabFiles; 28 28 import org.geotools.data.shapefile.dbf.DbaseFileReader; 29 29 import org.geotools.data.shapefile.dbf.DbaseFileReader.Row;
Note:
See TracChangeset
for help on using the changeset viewer.