Skip to content

Commit 0a632fd

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

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
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>();

0 commit comments

Comments
 (0)