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 3cc8794 commit 675b99dCopy full SHA for 675b99d
sources/net.sf.j2s.ui/src/net/sf/j2s/ui/classpath/UnitClass.java
@@ -32,18 +32,8 @@ public boolean exists() {
32
return new File(getFolder(), getRelativePath()).exists();
33
}
34
public String toHTMLString() {
35
- String bin = "";
36
// Class unit *.js is loaded by Clazz.load from now on.
37
- if (true) return bin;
38
- if (this.getParent() != null
39
- && (this.getParent() instanceof CompositeResources)) {
40
- CompositeResources cc = (CompositeResources) this.getParent();
41
- String binRelative = cc.getBinRelativePath();
42
- if (binRelative != null) {
43
- bin += binRelative;
44
- }
45
46
- return J2SLaunchingUtil.wrapTypeJS(getClassName(), bin + getBinRelativePath());
+ return "";
47
48
49
public int getType() {
0 commit comments