Skip to content

Commit

Permalink
Merge pull request #16 from engycz/master
Browse files Browse the repository at this point in the history
Fix #15 not working with Oxygen, cleanup dependencies
  • Loading branch information
Paul Verest authored Apr 2, 2018
2 parents 307dfe1 + e57567e commit f8b0253
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
5 changes: 1 addition & 4 deletions pm.eclipse.editbox/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,5 @@ Bundle-Version: 0.70.0.qualifier
Bundle-Activator: pm.eclipse.editbox.EditBox
Bundle-Vendor: Nodeclipse
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
org.eclipse.ui.editors,
org.eclipse.jface.text,
org.eclipse.jdt.ui
org.eclipse.core.runtime
Eclipse-LazyStart: true
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ protected void setFileNames(Collection<String> fileNames) {
*/
protected Collection<String> getFileNames() {
String fileNames = store.getString(providerKey(FILE_NAMES));
if (fileNames == null) {
if (fileNames == null || fileNames.equals("")) {
return null;
}
List<String> list = new ArrayList<String>();
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@

<repositories>
<repository>
<id>kepler</id>
<id>oxygen</id>
<layout>p2</layout>
<url>http://download.eclipse.org/releases/kepler</url>
<url>http://download.eclipse.org/releases/oxygen</url>
</repository>

</repositories>
Expand Down

0 comments on commit f8b0253

Please sign in to comment.