1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-31 12:55:40 +02:00

2004-11-10 Alain Magloire

Typo in method IBinaryParser.ISymbol
	* src/org/eclipse/cdt/core/IBinaryParser.java
	* utils/org/eclipse/cdt/utils/Symbol.java
This commit is contained in:
Alain Magloire 2004-11-10 19:43:34 +00:00
parent 1449fe17d1
commit 7dae0c0ca3
3 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2004-11-10 Alain Magloire
Typo in method IBinaryParser.ISymbol
* src/org/eclipse/cdt/core/IBinaryParser.java
* utils/org/eclipse/cdt/utils/Symbol.java
2004-11-10 Alain Magloire 2004-11-10 Alain Magloire
Fix for PR 78308, on deleting of non-C resources, no deltas Fix for PR 78308, on deleting of non-C resources, no deltas
was fired. was fired.

View file

@ -220,7 +220,7 @@ public interface IBinaryParser extends IAdaptable {
* Return the binary object this symbol is from. * Return the binary object this symbol is from.
* @return * @return
*/ */
IBinaryObject getBinarObject(); IBinaryObject getBinaryObject();
} }
/** /**

View file

@ -52,7 +52,7 @@ public class Symbol implements ISymbol, Comparable {
/* (non-Javadoc) /* (non-Javadoc)
* @see org.eclipse.cdt.core.IBinaryParser.ISymbol#getBinarObject() * @see org.eclipse.cdt.core.IBinaryParser.ISymbol#getBinarObject()
*/ */
public IBinaryObject getBinarObject() { public IBinaryObject getBinaryObject() {
return binary; return binary;
} }