Skip to content
This repository was archived by the owner on Sep 1, 2022. It is now read-only.

Do not select extensions by default #71

Merged
merged 1 commit into from
Jan 13, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ abstract class AbstractFileHandler implements IMessageFilter {
}

/**
* Get the list of file extensions supported by the handler.
* Get the list of file extensions explicitly supported by the handler.
*/
get fileExtensions(): string[] {
return ['.txt']
return []
}

/**
Expand Down