File tree 3 files changed +4
-7
lines changed
src/pm/eclipse/editbox/impl
3 files changed +4
-7
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 >();
Original file line number Diff line number Diff line change 51
51
52
52
<repositories >
53
53
<repository >
54
- <id >kepler </id >
54
+ <id >oxygen </id >
55
55
<layout >p2</layout >
56
- <url >http://download.eclipse.org/releases/kepler </url >
56
+ <url >http://download.eclipse.org/releases/oxygen </url >
57
57
</repository >
58
58
59
59
</repositories >
You can’t perform that action at this time.
0 commit comments