We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1888985 commit c571162Copy full SHA for c571162
vtm/src/org/oscim/tiling/source/mapfile/MapFileTileSource.java
@@ -182,7 +182,8 @@ public OpenResult open() {
182
mapFile = file;
183
databaseIndexCache = new IndexCache(inputChannel, INDEX_CACHE_SIZE);
184
185
- log.fine("File version: " + fileInfo.fileVersion);
+ if (fileInfo != null)
186
+ log.fine("File version: " + fileInfo.fileVersion);
187
return OpenResult.SUCCESS;
188
} catch (IOException e) {
189
log.severe(e.toString());
0 commit comments