remove debug log

This commit is contained in:
marhali 2022-01-12 09:07:04 +01:00
parent 939ef0b283
commit 44310d5459

View File

@ -58,7 +58,6 @@ public interface IOStrategy {
* @return true if file matches pattern
*/
default boolean isFileRelevant(@NotNull SettingsState state, @NotNull VirtualFile file) {
System.out.println(file.getName() + " " + FilenameUtils.wildcardMatch(file.getName(), state.getFilePattern()));
return FilenameUtils.wildcardMatch(file.getName(), state.getFilePattern());
}
}