Skip to content

Commit

Permalink
Fixed #96 - Add to null when there is no ignore file in the project
Browse files Browse the repository at this point in the history
  • Loading branch information
hsz committed Mar 31, 2015
1 parent f2f5063 commit 72bbb74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public AnAction[] getChildren(@Nullable AnActionEvent e) {
int count = countFiles();

if (count == 0) {
actions = new AnAction[]{ new IgnoreFileAction() };
actions = new AnAction[0];
} else {
actions = new AnAction[count];

Expand Down

0 comments on commit 72bbb74

Please sign in to comment.