aptana / studio3

This repository contains the code for core components of Aptana Studio 3.
http://aptana.com/products/studio3
Other
1.07k stars 483 forks source link

Fix for TISTUD-8984: Eclipse-oxygen-2: Exceptions while creating Mobile Project in App Explorer view #454

Closed ppedduri closed 6 years ago

ppedduri commented 6 years ago

Jira: https://jira.appcelerator.org/browse/TISTUD-8984

Cause: per eclipse documentation, recent versions of eclipse mandate that we return ITreeViewer object on any overridden getSelection() method of AbstractTreeViewer class.

Excerpt from doc - Subclasses do not typically override this method, but implement getSelectionFromWidget(List) instead. If they override this method, they should return an ITreeSelection as well.

Fix: Removed old implementation of returning IStructuredSelection and returning ITreeSelection object on the project node.

ppedduri commented 6 years ago

Thanks @kolipakakondal. I incorporated review comments and pushed latest changes.