Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 497f3f4 commit 1b77533Copy full SHA for 1b77533
src/net/sf/j2s/ui/variables/SWTVariableInitializer.java
@@ -57,7 +57,7 @@ public void initialize(String variable) {
57
File[] swtJars = file.listFiles(new FileFilter() {
58
public boolean accept(File pathname) {
59
String name = pathname.getName().toLowerCase();
60
- if (name.startsWith("org.eclipse.swt.") && name.endsWith(".jar")) {
+ if (name.startsWith("org.eclipse.swt.") && name.endsWith(".jar") && name.indexOf("source") == -1) {
61
return true;
62
}
63
return false;
0 commit comments