Skip to content

Commit e57567e

Browse files
Fix not working with Oxygen, cleanup dependencies
Fix Issue #15
1 parent 307dfe1 commit e57567e

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

pm.eclipse.editbox/META-INF/MANIFEST.MF

+1-4
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,5 @@ Bundle-Version: 0.70.0.qualifier
66
Bundle-Activator: pm.eclipse.editbox.EditBox
77
Bundle-Vendor: Nodeclipse
88
Require-Bundle: org.eclipse.ui,
9-
org.eclipse.core.runtime,
10-
org.eclipse.ui.editors,
11-
org.eclipse.jface.text,
12-
org.eclipse.jdt.ui
9+
org.eclipse.core.runtime
1310
Eclipse-LazyStart: true

pm.eclipse.editbox/src/pm/eclipse/editbox/impl/BoxSettingsStoreImpl.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ protected void setFileNames(Collection<String> fileNames) {
174174
*/
175175
protected Collection<String> getFileNames() {
176176
String fileNames = store.getString(providerKey(FILE_NAMES));
177-
if (fileNames == null) {
177+
if (fileNames == null || fileNames.equals("")) {
178178
return null;
179179
}
180180
List<String> list = new ArrayList<String>();

pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@
5151

5252
<repositories>
5353
<repository>
54-
<id>kepler</id>
54+
<id>oxygen</id>
5555
<layout>p2</layout>
56-
<url>http://download.eclipse.org/releases/kepler</url>
56+
<url>http://download.eclipse.org/releases/oxygen</url>
5757
</repository>
5858

5959
</repositories>

0 commit comments

Comments
 (0)