Tiny spell fix.

This commit is contained in:
Keir Nellyer 2016-01-17 00:34:18 +00:00
parent 398c56983b
commit 40833c80bd

View File

@ -23,7 +23,7 @@ public class FilePurger implements Runnable
_logger = logger;
Validate.notNull(_dataDir, "Data directory cannot be null.");
Validate.isTrue(_dataDir.exists() && dataDir.isDirectory(), "Path non-existant or not a directory: %s", _dataDir.getAbsolutePath());
Validate.isTrue(_dataDir.exists() && dataDir.isDirectory(), "Path non-existent or not a directory: %s", _dataDir.getAbsolutePath());
Validate.notNull(_logger, "Logger cannot be null.");
}