Author: toad Date: 2006-11-29 15:15:27 +0000 (Wed, 29 Nov 2006) New Revision: 11109
Modified: trunk/freenet/src/freenet/client/ArchiveManager.java trunk/freenet/src/freenet/client/FetcherContext.java trunk/freenet/src/freenet/client/InsertBlock.java trunk/freenet/src/freenet/client/Metadata.java trunk/freenet/src/freenet/crypt/HMAC.java trunk/freenet/src/freenet/keys/CHKBlock.java trunk/freenet/src/freenet/keys/CHKDecodeException.java trunk/freenet/src/freenet/keys/CHKEncodeException.java trunk/freenet/src/freenet/keys/CHKVerifyException.java trunk/freenet/src/freenet/keys/ClientCHKBlock.java trunk/freenet/src/freenet/keys/KeyDecodeException.java trunk/freenet/src/freenet/keys/NodeCHK.java trunk/freenet/src/freenet/keys/NodeSSK.java trunk/freenet/src/freenet/node/FSParseException.java trunk/freenet/src/freenet/node/KeyChangedException.java trunk/freenet/src/freenet/node/Location.java trunk/freenet/src/freenet/node/LocationManager.java trunk/freenet/src/freenet/node/LowLevelGetException.java trunk/freenet/src/freenet/node/LowLevelPutException.java trunk/freenet/src/freenet/node/PacketSender.java trunk/freenet/src/freenet/node/RequestSender.java trunk/freenet/src/freenet/support/math/BootstrappingDecayingRunningAverage.java Log: Add some more GPL headers. Also delete some dead comments. Still waiting for the following copyright holders: iakin, jogy, giannij, mjr, gthyni, hirvox, pascal666, kodist, nacktschneck, bobsan, odonata, devrandom. Modified: trunk/freenet/src/freenet/client/ArchiveManager.java =================================================================== --- trunk/freenet/src/freenet/client/ArchiveManager.java 2006-11-29 15:08:53 UTC (rev 11108) +++ trunk/freenet/src/freenet/client/ArchiveManager.java 2006-11-29 15:15:27 UTC (rev 11109) @@ -1,3 +1,6 @@ +/* This code is part of Freenet. It is distributed under the GNU General + * Public License, version 2 (or at your option any later version). See + * http://www.gnu.org/ for further details of the GPL. */ package freenet.client; import java.io.File; Modified: trunk/freenet/src/freenet/client/FetcherContext.java =================================================================== --- trunk/freenet/src/freenet/client/FetcherContext.java 2006-11-29 15:08:53 UTC (rev 11108) +++ trunk/freenet/src/freenet/client/FetcherContext.java 2006-11-29 15:15:27 UTC (rev 11109) @@ -1,3 +1,6 @@ +/* This code is part of Freenet. It is distributed under the GNU General + * Public License, version 2 (or at your option any later version). See + * http://www.gnu.org/ for further details of the GPL. */ package freenet.client; import freenet.client.async.HealingQueue; Modified: trunk/freenet/src/freenet/client/InsertBlock.java =================================================================== --- trunk/freenet/src/freenet/client/InsertBlock.java 2006-11-29 15:08:53 UTC (rev 11108) +++ trunk/freenet/src/freenet/client/InsertBlock.java 2006-11-29 15:15:27 UTC (rev 11109) @@ -1,3 +1,6 @@ +/* This code is part of Freenet. It is distributed under the GNU General + * Public License, version 2 (or at your option any later version). See + * http://www.gnu.org/ for further details of the GPL. */ package freenet.client; import freenet.keys.FreenetURI; Modified: trunk/freenet/src/freenet/client/Metadata.java =================================================================== --- trunk/freenet/src/freenet/client/Metadata.java 2006-11-29 15:08:53 UTC (rev 11108) +++ trunk/freenet/src/freenet/client/Metadata.java 2006-11-29 15:15:27 UTC (rev 11109) @@ -1,3 +1,6 @@ +/* This code is part of Freenet. It is distributed under the GNU General + * Public License, version 2 (or at your option any later version). See + * http://www.gnu.org/ for further details of the GPL. */ package freenet.client; import java.io.BufferedInputStream; Modified: trunk/freenet/src/freenet/crypt/HMAC.java =================================================================== --- trunk/freenet/src/freenet/crypt/HMAC.java 2006-11-29 15:08:53 UTC (rev 11108) +++ trunk/freenet/src/freenet/crypt/HMAC.java 2006-11-29 15:15:27 UTC (rev 11109) @@ -1,3 +1,6 @@ +/* This code is part of Freenet. It is distributed under the GNU General + * Public License, version 2 (or at your option any later version). See + * http://www.gnu.org/ for further details of the GPL. */ package freenet.crypt; import java.util.Arrays; Modified: trunk/freenet/src/freenet/keys/CHKBlock.java =================================================================== --- trunk/freenet/src/freenet/keys/CHKBlock.java 2006-11-29 15:08:53 UTC (rev 11108) +++ trunk/freenet/src/freenet/keys/CHKBlock.java 2006-11-29 15:15:27 UTC (rev 11109) @@ -1,3 +1,6 @@ +/* This code is part of Freenet. It is distributed under the GNU General + * Public License, version 2 (or at your option any later version). See + * http://www.gnu.org/ for further details of the GPL. */ package freenet.keys; import java.security.MessageDigest; Modified: trunk/freenet/src/freenet/keys/CHKDecodeException.java =================================================================== --- trunk/freenet/src/freenet/keys/CHKDecodeException.java 2006-11-29 15:08:53 UTC (rev 11108) +++ trunk/freenet/src/freenet/keys/CHKDecodeException.java 2006-11-29 15:15:27 UTC (rev 11109) @@ -1,3 +1,6 @@ +/* This code is part of Freenet. It is distributed under the GNU General + * Public License, version 2 (or at your option any later version). See + * http://www.gnu.org/ for further details of the GPL. */ package freenet.keys; /** @@ -7,37 +10,21 @@ */ public class CHKDecodeException extends KeyDecodeException { private static final long serialVersionUID = -1; - /** - * - */ + public CHKDecodeException() { super(); - // TODO Auto-generated constructor stub } - /** - * @param message - */ public CHKDecodeException(String message) { super(message); - // TODO Auto-generated constructor stub } - /** - * @param message - * @param cause - */ public CHKDecodeException(String message, Throwable cause) { super(message, cause); - // TODO Auto-generated constructor stub } - /** - * @param cause - */ public CHKDecodeException(Throwable cause) { super(cause); - // TODO Auto-generated constructor stub } } Modified: trunk/freenet/src/freenet/keys/CHKEncodeException.java =================================================================== --- trunk/freenet/src/freenet/keys/CHKEncodeException.java 2006-11-29 15:08:53 UTC (rev 11108) +++ trunk/freenet/src/freenet/keys/CHKEncodeException.java 2006-11-29 15:15:27 UTC (rev 11109) @@ -1,3 +1,6 @@ +/* This code is part of Freenet. It is distributed under the GNU General + * Public License, version 2 (or at your option any later version). See + * http://www.gnu.org/ for further details of the GPL. */ package freenet.keys; /** Modified: trunk/freenet/src/freenet/keys/CHKVerifyException.java =================================================================== --- trunk/freenet/src/freenet/keys/CHKVerifyException.java 2006-11-29 15:08:53 UTC (rev 11108) +++ trunk/freenet/src/freenet/keys/CHKVerifyException.java 2006-11-29 15:15:27 UTC (rev 11109) @@ -1,3 +1,6 @@ +/* This code is part of Freenet. It is distributed under the GNU General + * Public License, version 2 (or at your option any later version). See + * http://www.gnu.org/ for further details of the GPL. */ package freenet.keys; /** @@ -8,32 +11,18 @@ public class CHKVerifyException extends KeyVerifyException { private static final long serialVersionUID = -1; - /** - * - */ public CHKVerifyException() { super(); } - /** - * @param message - */ public CHKVerifyException(String message) { super(message); - // TODO Auto-generated constructor stub } - /** - * @param message - * @param cause - */ public CHKVerifyException(String message, Throwable cause) { super(message, cause); } - /** - * @param cause - */ public CHKVerifyException(Throwable cause) { super(cause); } Modified: trunk/freenet/src/freenet/keys/ClientCHKBlock.java =================================================================== --- trunk/freenet/src/freenet/keys/ClientCHKBlock.java 2006-11-29 15:08:53 UTC (rev 11108) +++ trunk/freenet/src/freenet/keys/ClientCHKBlock.java 2006-11-29 15:15:27 UTC (rev 11109) @@ -1,3 +1,6 @@ +/* This code is part of Freenet. It is distributed under the GNU General + * Public License, version 2 (or at your option any later version). See + * http://www.gnu.org/ for further details of the GPL. */ package freenet.keys; import java.io.IOException; Modified: trunk/freenet/src/freenet/keys/KeyDecodeException.java =================================================================== --- trunk/freenet/src/freenet/keys/KeyDecodeException.java 2006-11-29 15:08:53 UTC (rev 11108) +++ trunk/freenet/src/freenet/keys/KeyDecodeException.java 2006-11-29 15:15:27 UTC (rev 11109) @@ -1,3 +1,6 @@ +/* This code is part of Freenet. It is distributed under the GNU General + * Public License, version 2 (or at your option any later version). See + * http://www.gnu.org/ for further details of the GPL. */ package freenet.keys; /** Modified: trunk/freenet/src/freenet/keys/NodeCHK.java =================================================================== --- trunk/freenet/src/freenet/keys/NodeCHK.java 2006-11-29 15:08:53 UTC (rev 11108) +++ trunk/freenet/src/freenet/keys/NodeCHK.java 2006-11-29 15:15:27 UTC (rev 11109) @@ -1,3 +1,6 @@ +/* This code is part of Freenet. It is distributed under the GNU General + * Public License, version 2 (or at your option any later version). See + * http://www.gnu.org/ for further details of the GPL. */ package freenet.keys; import java.io.DataInput; Modified: trunk/freenet/src/freenet/keys/NodeSSK.java =================================================================== --- trunk/freenet/src/freenet/keys/NodeSSK.java 2006-11-29 15:08:53 UTC (rev 11108) +++ trunk/freenet/src/freenet/keys/NodeSSK.java 2006-11-29 15:15:27 UTC (rev 11109) @@ -1,3 +1,6 @@ +/* This code is part of Freenet. It is distributed under the GNU General + * Public License, version 2 (or at your option any later version). See + * http://www.gnu.org/ for further details of the GPL. */ package freenet.keys; import java.io.DataInput; Modified: trunk/freenet/src/freenet/node/FSParseException.java =================================================================== --- trunk/freenet/src/freenet/node/FSParseException.java 2006-11-29 15:08:53 UTC (rev 11108) +++ trunk/freenet/src/freenet/node/FSParseException.java 2006-11-29 15:15:27 UTC (rev 11109) @@ -1,3 +1,6 @@ +/* This code is part of Freenet. It is distributed under the GNU General + * Public License, version 2 (or at your option any later version). See + * http://www.gnu.org/ for further details of the GPL. */ package freenet.node; /** Modified: trunk/freenet/src/freenet/node/KeyChangedException.java =================================================================== --- trunk/freenet/src/freenet/node/KeyChangedException.java 2006-11-29 15:08:53 UTC (rev 11108) +++ trunk/freenet/src/freenet/node/KeyChangedException.java 2006-11-29 15:15:27 UTC (rev 11109) @@ -1,3 +1,6 @@ +/* This code is part of Freenet. It is distributed under the GNU General + * Public License, version 2 (or at your option any later version). See + * http://www.gnu.org/ for further details of the GPL. */ package freenet.node; /** Modified: trunk/freenet/src/freenet/node/Location.java =================================================================== --- trunk/freenet/src/freenet/node/Location.java 2006-11-29 15:08:53 UTC (rev 11108) +++ trunk/freenet/src/freenet/node/Location.java 2006-11-29 15:15:27 UTC (rev 11109) @@ -1,3 +1,6 @@ +/* This code is part of Freenet. It is distributed under the GNU General + * Public License, version 2 (or at your option any later version). See + * http://www.gnu.org/ for further details of the GPL. */ package freenet.node; import freenet.crypt.RandomSource; Modified: trunk/freenet/src/freenet/node/LocationManager.java =================================================================== --- trunk/freenet/src/freenet/node/LocationManager.java 2006-11-29 15:08:53 UTC (rev 11108) +++ trunk/freenet/src/freenet/node/LocationManager.java 2006-11-29 15:15:27 UTC (rev 11109) @@ -1,3 +1,6 @@ +/* This code is part of Freenet. It is distributed under the GNU General + * Public License, version 2 (or at your option any later version). See + * http://www.gnu.org/ for further details of the GPL. */ package freenet.node; import java.security.MessageDigest; Modified: trunk/freenet/src/freenet/node/LowLevelGetException.java =================================================================== --- trunk/freenet/src/freenet/node/LowLevelGetException.java 2006-11-29 15:08:53 UTC (rev 11108) +++ trunk/freenet/src/freenet/node/LowLevelGetException.java 2006-11-29 15:15:27 UTC (rev 11109) @@ -1,3 +1,6 @@ +/* This code is part of Freenet. It is distributed under the GNU General + * Public License, version 2 (or at your option any later version). See + * http://www.gnu.org/ for further details of the GPL. */ package freenet.node; public class LowLevelGetException extends Exception { Modified: trunk/freenet/src/freenet/node/LowLevelPutException.java =================================================================== --- trunk/freenet/src/freenet/node/LowLevelPutException.java 2006-11-29 15:08:53 UTC (rev 11108) +++ trunk/freenet/src/freenet/node/LowLevelPutException.java 2006-11-29 15:15:27 UTC (rev 11109) @@ -1,3 +1,6 @@ +/* This code is part of Freenet. It is distributed under the GNU General + * Public License, version 2 (or at your option any later version). See + * http://www.gnu.org/ for further details of the GPL. */ package freenet.node; public class LowLevelPutException extends Exception { Modified: trunk/freenet/src/freenet/node/PacketSender.java =================================================================== --- trunk/freenet/src/freenet/node/PacketSender.java 2006-11-29 15:08:53 UTC (rev 11108) +++ trunk/freenet/src/freenet/node/PacketSender.java 2006-11-29 15:15:27 UTC (rev 11109) @@ -1,3 +1,6 @@ +/* This code is part of Freenet. It is distributed under the GNU General + * Public License, version 2 (or at your option any later version). See + * http://www.gnu.org/ for further details of the GPL. */ package freenet.node; import java.util.LinkedList; Modified: trunk/freenet/src/freenet/node/RequestSender.java =================================================================== --- trunk/freenet/src/freenet/node/RequestSender.java 2006-11-29 15:08:53 UTC (rev 11108) +++ trunk/freenet/src/freenet/node/RequestSender.java 2006-11-29 15:15:27 UTC (rev 11109) @@ -1,3 +1,6 @@ +/* This code is part of Freenet. It is distributed under the GNU General + * Public License, version 2 (or at your option any later version). See + * http://www.gnu.org/ for further details of the GPL. */ package freenet.node; import java.io.IOException; Modified: trunk/freenet/src/freenet/support/math/BootstrappingDecayingRunningAverage.java =================================================================== --- trunk/freenet/src/freenet/support/math/BootstrappingDecayingRunningAverage.java 2006-11-29 15:08:53 UTC (rev 11108) +++ trunk/freenet/src/freenet/support/math/BootstrappingDecayingRunningAverage.java 2006-11-29 15:15:27 UTC (rev 11109) @@ -1,3 +1,6 @@ +/* This code is part of Freenet. It is distributed under the GNU General + * Public License, version 2 (or at your option any later version). See + * http://www.gnu.org/ for further details of the GPL. */ package freenet.support.math; import java.io.DataInputStream;
