Mailing List Archive

cvs commit: jakarta-lucene-sandbox/contributions/webcrawler-LARM/src/de/lanlab/larm/util HashedCircularLinkedList.java
cmarschner 2002/10/22 08:36:40

Modified: contributions/webcrawler-LARM/src/de/lanlab/larm/util
HashedCircularLinkedList.java
Log:
added getCurrentKey method

Revision Changes Path
1.3 +7 -0 jakarta-lucene-sandbox/contributions/webcrawler-LARM/src/de/lanlab/larm/util/HashedCircularLinkedList.java

Index: HashedCircularLinkedList.java
===================================================================
RCS file: /home/cvs/jakarta-lucene-sandbox/contributions/webcrawler-LARM/src/de/lanlab/larm/util/HashedCircularLinkedList.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- HashedCircularLinkedList.java 22 May 2002 23:09:19 -0000 1.2
+++ HashedCircularLinkedList.java 22 Oct 2002 15:36:40 -0000 1.3
@@ -93,6 +93,13 @@
}
}

+ public Object getCurrentKey()
+ {
+
+ return current != null ? current.key : null;
+
+ }
+
/**
* the list. contains objects
*/




--
To unsubscribe, e-mail: <mailto:lucene-dev-unsubscribe@jakarta.apache.org>
For additional commands, e-mail: <mailto:lucene-dev-help@jakarta.apache.org>