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:
parent
43fdcb2dc6
commit
2ea761f27d
2 changed files with 2 additions and 2 deletions
|
@ -41,7 +41,7 @@ public class Symbol implements ISymbol {
|
||||||
/* (non-Javadoc)
|
/* (non-Javadoc)
|
||||||
* @see org.eclipse.cdt.core.IBinaryParser.ISymbol#getAdress()
|
* @see org.eclipse.cdt.core.IBinaryParser.ISymbol#getAdress()
|
||||||
*/
|
*/
|
||||||
public long getAdress() {
|
public long getAddress() {
|
||||||
return addr;
|
return addr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -79,7 +79,7 @@ public interface IBinaryParser {
|
||||||
static final int VARIABLE = 0x02;
|
static final int VARIABLE = 0x02;
|
||||||
|
|
||||||
String getName();
|
String getName();
|
||||||
long getAdress();
|
long getAddress();
|
||||||
int getStartLine();
|
int getStartLine();
|
||||||
int getEndLine();
|
int getEndLine();
|
||||||
String getFilename();
|
String getFilename();
|
||||||
|
|
Loading…
Add table
Reference in a new issue