Don't log FileNotFoundException when trying to load markers.csv.

The file is not required unless there are markers.
This commit is contained in:
fescen9 2010-12-06 00:18:57 +00:00
parent 04ffed70ea
commit 482c07ed8a
1 changed files with 1 additions and 1 deletions

View File

@ -510,7 +510,7 @@ public class MapManager extends Thread {
}
catch(FileNotFoundException e)
{
log.log(Level.SEVERE, "markers.csv not found", e);
// No need to log FileNotFoundException
}
finally
{