Skip to content

Commit

Permalink
removed bogus TODOs in stub
Browse files Browse the repository at this point in the history
darcs-hash:20080216122052-34f1c-c57c74d54d9601fb5986c10875bb6147ffb218a5.gz
  • Loading branch information
Leif Frenzel committed Feb 16, 2008
1 parent 75145ca commit b2d9707
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
Expand Up @@ -63,7 +63,6 @@ private boolean isEqual( ISourceLocation anotherLocation ) {


public long getOffset() {
// TODO Auto-generated method stub
return 0;
}
}
Expand Up @@ -9,14 +9,13 @@

public class StubImport implements IImport {

private String fModule;
private final String fModule;

public StubImport(String module) {
public StubImport(final String module) {
fModule = module;
}

public IImportSpecification[] getImportSpecifications() {
// TODO Auto-generated method stub
return null;
}

Expand All @@ -25,33 +24,26 @@ public String getImportedElement() {
}

public IModule getModule() {
// TODO Auto-generated method stub
return null;
}

public boolean isHiding() {
// TODO Auto-generated method stub
return false;
}

public ICompilationUnit getCompilationUnit() {
// TODO Auto-generated method stub
return null;
}

public String getName() {
// TODO Auto-generated method stub
return null;
}

public IHaskellLanguageElement getParent() {
// TODO Auto-generated method stub
return null;
}

public ISourceLocation getSourceLocation() {
// TODO Auto-generated method stub
return null;
}

}

0 comments on commit b2d9707

Please sign in to comment.