| | |
| | | |
| | | // Make sure that the profile directory exists. |
| | | File profileDirectory = getFileForPath(configuration.getProfileDirectory()); |
| | | if (! (profileDirectory.exists() && profileDirectory.isDirectory())) |
| | | if (!profileDirectory.exists() || !profileDirectory.isDirectory()) |
| | | { |
| | | LocalizableMessage message = WARN_PLUGIN_PROFILER_INVALID_PROFILE_DIR.get( |
| | | profileDirectory.getAbsolutePath(), configEntryDN); |
| | |
| | | |
| | | // Make sure that the profile directory exists. |
| | | File profileDirectory = getFileForPath(configuration.getProfileDirectory()); |
| | | if (! (profileDirectory.exists() && profileDirectory.isDirectory())) |
| | | if (!profileDirectory.exists() || !profileDirectory.isDirectory()) |
| | | { |
| | | unacceptableReasons.add(WARN_PLUGIN_PROFILER_INVALID_PROFILE_DIR.get( |
| | | profileDirectory.getAbsolutePath(), cfgEntryDN)); |