File tree 2 files changed +2
-5
lines changed
src/pm/eclipse/editbox/impl
2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -6,8 +6,5 @@ Bundle-Version: 0.70.0.qualifier
6
6
Bundle-Activator : pm.eclipse.editbox.EditBox
7
7
Bundle-Vendor : Nodeclipse
8
8
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
13
10
Eclipse-LazyStart : true
Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ protected void setFileNames(Collection<String> fileNames) {
174
174
*/
175
175
protected Collection <String > getFileNames () {
176
176
String fileNames = store .getString (providerKey (FILE_NAMES ));
177
- if (fileNames == null ) {
177
+ if (fileNames == null || fileNames . equals ( "" ) ) {
178
178
return null ;
179
179
}
180
180
List <String > list = new ArrayList <String >();
You can’t perform that action at this time.
0 commit comments