Author: nextgens
Date: 2008-04-06 08:04:11 +0000 (Sun, 06 Apr 2008)
New Revision: 19052
Modified:
trunk/freenet/src/freenet/support/DoublyLinkedListImpl.java
trunk/freenet/src/freenet/support/math/DecayingKeyspaceAverage.java
trunk/freenet/src/freenet/support/math/RunningAverage.java
trunk/freenet/src/freenet/support/math/SimpleBinaryRunningAverage.java
Log:
revert r18966
Modified: trunk/freenet/src/freenet/support/DoublyLinkedListImpl.java
===================================================================
--- trunk/freenet/src/freenet/support/DoublyLinkedListImpl.java 2008-04-05
20:24:50 UTC (rev 19051)
+++ trunk/freenet/src/freenet/support/DoublyLinkedListImpl.java 2008-04-06
08:04:11 UTC (rev 19052)
@@ -10,7 +10,7 @@
* TODO: there are still some unimplemented methods
* -- it remains to be seen if they are needed at all
*/
-public class DoublyLinkedListImpl implements DoublyLinkedList, Cloneable {
+public class DoublyLinkedListImpl implements DoublyLinkedList {
protected int size;
protected Item _headptr, _tailptr;
Modified: trunk/freenet/src/freenet/support/math/DecayingKeyspaceAverage.java
===================================================================
--- trunk/freenet/src/freenet/support/math/DecayingKeyspaceAverage.java
2008-04-05 20:24:50 UTC (rev 19051)
+++ trunk/freenet/src/freenet/support/math/DecayingKeyspaceAverage.java
2008-04-06 08:04:11 UTC (rev 19052)
@@ -12,7 +12,7 @@
*
* A filter on BootstrappingDecayingRunningAverage which makes it aware of the
circular keyspace.
*/
-public class DecayingKeyspaceAverage implements RunningAverage, Cloneable {
+public class DecayingKeyspaceAverage implements RunningAverage {
private static final long serialVersionUID = 5129429614949179428L;
/**
Modified: trunk/freenet/src/freenet/support/math/RunningAverage.java
===================================================================
--- trunk/freenet/src/freenet/support/math/RunningAverage.java 2008-04-05
20:24:50 UTC (rev 19051)
+++ trunk/freenet/src/freenet/support/math/RunningAverage.java 2008-04-06
08:04:11 UTC (rev 19052)
@@ -5,7 +5,7 @@
import java.io.Serializable;
-public interface RunningAverage extends Serializable, Cloneable {
+public interface RunningAverage extends Serializable {
public Object clone();
Modified: trunk/freenet/src/freenet/support/math/SimpleBinaryRunningAverage.java
===================================================================
--- trunk/freenet/src/freenet/support/math/SimpleBinaryRunningAverage.java
2008-04-05 20:24:50 UTC (rev 19051)
+++ trunk/freenet/src/freenet/support/math/SimpleBinaryRunningAverage.java
2008-04-06 08:04:11 UTC (rev 19052)
@@ -15,7 +15,7 @@
* @author amphibian
* Created on May 14, 2004
*/
-public class SimpleBinaryRunningAverage implements RunningAverage, Cloneable {
+public class SimpleBinaryRunningAverage implements RunningAverage {
private static final long serialVersionUID = -1;
public Object clone() {