Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCurtis D'Entremont2006-11-08 21:15:24 +0000
committerCurtis D'Entremont2006-11-08 21:15:24 +0000
commit493bb0871612962a7e466e855eaef8169589a796 (patch)
tree724ced5af2c6b111f462f00706a9dc768b40d75e /org.eclipse.help/src/org/eclipse/help/internal/index/Index.java
parent832d80b960d5b693aa7736dd980888c616e16d20 (diff)
downloadeclipse.platform.ua-493bb0871612962a7e466e855eaef8169589a796.tar.gz
eclipse.platform.ua-493bb0871612962a7e466e855eaef8169589a796.tar.xz
eclipse.platform.ua-493bb0871612962a7e466e855eaef8169589a796.zip
rename Node method names to avoid conflicts with existing interface method names (part 2)
Diffstat (limited to 'org.eclipse.help/src/org/eclipse/help/internal/index/Index.java')
-rw-r--r--org.eclipse.help/src/org/eclipse/help/internal/index/Index.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.help/src/org/eclipse/help/internal/index/Index.java b/org.eclipse.help/src/org/eclipse/help/internal/index/Index.java
index 42e74aa73..9fb6b2fa9 100644
--- a/org.eclipse.help/src/org/eclipse/help/internal/index/Index.java
+++ b/org.eclipse.help/src/org/eclipse/help/internal/index/Index.java
@@ -43,6 +43,6 @@ public class Index extends NodeAdapter implements IIndex {
* @see org.eclipse.help.IIndex#getEntries()
*/
public IIndexEntry[] getEntries() {
- return (IndexEntry[])getChildren(IndexEntry.NAME, IndexEntry.class);
+ return (IndexEntry[])getChildNodes(IndexEntry.NAME, IndexEntry.class);
}
}

Back to the top