From ebbf92c2f4a98ac9cb4ab8f755bdda8fd52d0e95 Mon Sep 17 00:00:00 2001 From: cmarschner Date: Tue, 22 Oct 2002 15:36:40 +0000 Subject: [PATCH] added getCurrentKey method git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150851 13f79535-47bb-0310-9956-ffa450edef68 --- .../src/de/lanlab/larm/util/HashedCircularLinkedList.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/sandbox/contributions/webcrawler-LARM/src/de/lanlab/larm/util/HashedCircularLinkedList.java b/sandbox/contributions/webcrawler-LARM/src/de/lanlab/larm/util/HashedCircularLinkedList.java index 8c980fa6140..93351f099dc 100644 --- a/sandbox/contributions/webcrawler-LARM/src/de/lanlab/larm/util/HashedCircularLinkedList.java +++ b/sandbox/contributions/webcrawler-LARM/src/de/lanlab/larm/util/HashedCircularLinkedList.java @@ -93,6 +93,13 @@ public class HashedCircularLinkedList } } + public Object getCurrentKey() + { + + return current != null ? current.key : null; + + } + /** * the list. contains objects */