1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-12 10:45:37 +02:00

Typo should be getAddress().

This commit is contained in:
Alain Magloire 2003-04-02 04:57:11 +00:00
parent 43fdcb2dc6
commit 2ea761f27d
2 changed files with 2 additions and 2 deletions

View file

@ -41,7 +41,7 @@ public class Symbol implements ISymbol {
/* (non-Javadoc)
* @see org.eclipse.cdt.core.IBinaryParser.ISymbol#getAdress()
*/
public long getAdress() {
public long getAddress() {
return addr;
}

View file

@ -79,7 +79,7 @@ public interface IBinaryParser {
static final int VARIABLE = 0x02;
String getName();
long getAdress();
long getAddress();
int getStartLine();
int getEndLine();
String getFilename();