Skip to content

Commit

Permalink
Fix UIContextFactory.getSelection()
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-wyluda committed Jun 19, 2014
1 parent b526ec7 commit cae26ec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ private static UISelection<?> getSelection(VirtualFile[] files)
else
{
List<Object> resources = filesToResources(files);
selection = Selections.from(resources);
selection = Selections.from(resources.toArray());
}

return selection;
Expand Down

0 comments on commit cae26ec

Please sign in to comment.