From 99e3619bcf2e4762678d6c8bd24da08bc87b7190 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Tue, 17 Jun 2008 09:08:10 +0200 Subject: [PATCH] fix email address --- src/net/pterodactylus/fcp/AllData.java | 2 +- src/net/pterodactylus/fcp/FcpConnection.java | 2 +- src/net/pterodactylus/fcp/FinishedCompression.java | 2 +- src/net/pterodactylus/fcp/NodeHello.java | 2 +- src/net/pterodactylus/fcp/PeerNote.java | 2 +- src/net/pterodactylus/fcp/PersistentGet.java | 2 +- src/net/pterodactylus/fcp/PersistentPut.java | 2 +- src/net/pterodactylus/fcp/ProtocolError.java | 2 +- src/net/pterodactylus/fcp/highlevel/HighLevelException.java | 2 +- src/net/pterodactylus/fcp/highlevel/NotConnectedException.java | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/net/pterodactylus/fcp/AllData.java b/src/net/pterodactylus/fcp/AllData.java index bf2a232..e6ed783 100644 --- a/src/net/pterodactylus/fcp/AllData.java +++ b/src/net/pterodactylus/fcp/AllData.java @@ -30,7 +30,7 @@ import java.io.InputStream; * passes through all registered {@link FcpListener}s without the payload being * consumed, the payload is discarded! * - * @author David Roden + * @author David ‘Bombe’ Roden <bombe@freenetproject.org> */ public class AllData extends BaseMessage { diff --git a/src/net/pterodactylus/fcp/FcpConnection.java b/src/net/pterodactylus/fcp/FcpConnection.java index efba297..dbe8d4f 100644 --- a/src/net/pterodactylus/fcp/FcpConnection.java +++ b/src/net/pterodactylus/fcp/FcpConnection.java @@ -872,7 +872,7 @@ public class FcpConnection implements Closeable { * A wrapper around an {@link InputStream} that only supplies a limit number * of bytes from the underlying input stream. * - * @author David Roden + * @author David ‘Bombe’ Roden <bombe@freenetproject.org> */ private static class LimitedInputStream extends FilterInputStream { diff --git a/src/net/pterodactylus/fcp/FinishedCompression.java b/src/net/pterodactylus/fcp/FinishedCompression.java index 72d38d3..25ce471 100644 --- a/src/net/pterodactylus/fcp/FinishedCompression.java +++ b/src/net/pterodactylus/fcp/FinishedCompression.java @@ -23,7 +23,7 @@ package net.pterodactylus.fcp; * A “FinishedCompression” message signals the client that the compression of * the request data has been finished. * - * @author David Roden <droden@gmail.com> + * @author David ‘Bombe’ Roden <bombe@freenetproject.org> */ public class FinishedCompression extends BaseMessage { diff --git a/src/net/pterodactylus/fcp/NodeHello.java b/src/net/pterodactylus/fcp/NodeHello.java index 7c6e27f..52e5400 100644 --- a/src/net/pterodactylus/fcp/NodeHello.java +++ b/src/net/pterodactylus/fcp/NodeHello.java @@ -22,7 +22,7 @@ package net.pterodactylus.fcp; /** * Some convenience methods for parsing a “NodeHello” message from the node. * - * @author David Roden + * @author David ‘Bombe’ Roden <bombe@freenetproject.org> */ public class NodeHello extends BaseMessage { diff --git a/src/net/pterodactylus/fcp/PeerNote.java b/src/net/pterodactylus/fcp/PeerNote.java index b35d95a..aeeeb1e 100644 --- a/src/net/pterodactylus/fcp/PeerNote.java +++ b/src/net/pterodactylus/fcp/PeerNote.java @@ -23,7 +23,7 @@ package net.pterodactylus.fcp; * The “PeerNote” message contains a private note that has been entered for a * darknet peer. * - * @author David Roden + * @author David ‘Bombe’ Roden <bombe@freenetproject.org> */ public class PeerNote extends BaseMessage { diff --git a/src/net/pterodactylus/fcp/PersistentGet.java b/src/net/pterodactylus/fcp/PersistentGet.java index 0d5a6f4..196c669 100644 --- a/src/net/pterodactylus/fcp/PersistentGet.java +++ b/src/net/pterodactylus/fcp/PersistentGet.java @@ -24,7 +24,7 @@ package net.pterodactylus.fcp; * The “PersistentGet” message is sent to the client to inform it about a * persistent download, either in the client-local queue or in the global queue. * - * @author David Roden + * @author David ‘Bombe’ Roden <bombe@freenetproject.org> */ public class PersistentGet extends BaseMessage { diff --git a/src/net/pterodactylus/fcp/PersistentPut.java b/src/net/pterodactylus/fcp/PersistentPut.java index 1457146..30b89b5 100644 --- a/src/net/pterodactylus/fcp/PersistentPut.java +++ b/src/net/pterodactylus/fcp/PersistentPut.java @@ -23,7 +23,7 @@ package net.pterodactylus.fcp; * A “PersistentPut” message notifies a client about a persistent * {@link ClientPut} request. * - * @author David Roden + * @author David ‘Bombe’ Roden <bombe@freenetproject.org> */ public class PersistentPut extends BaseMessage { diff --git a/src/net/pterodactylus/fcp/ProtocolError.java b/src/net/pterodactylus/fcp/ProtocolError.java index 9cdab00..d727e33 100644 --- a/src/net/pterodactylus/fcp/ProtocolError.java +++ b/src/net/pterodactylus/fcp/ProtocolError.java @@ -22,7 +22,7 @@ package net.pterodactylus.fcp; /** * The “ProtocolError” message signals that something has gone really wrong. * - * @author David Roden + * @author David ‘Bombe’ Roden <bombe@freenetproject.org> */ public class ProtocolError extends BaseMessage { diff --git a/src/net/pterodactylus/fcp/highlevel/HighLevelException.java b/src/net/pterodactylus/fcp/highlevel/HighLevelException.java index 0bcc82d..bed3ad5 100644 --- a/src/net/pterodactylus/fcp/highlevel/HighLevelException.java +++ b/src/net/pterodactylus/fcp/highlevel/HighLevelException.java @@ -7,7 +7,7 @@ package net.pterodactylus.fcp.highlevel; /** * Base exception for high-level client exceptions. * - * @author David Roden + * @author David ‘Bombe’ Roden <bombe@freenetproject.org> */ public class HighLevelException extends Exception { diff --git a/src/net/pterodactylus/fcp/highlevel/NotConnectedException.java b/src/net/pterodactylus/fcp/highlevel/NotConnectedException.java index f6dda28..ecfd14b 100644 --- a/src/net/pterodactylus/fcp/highlevel/NotConnectedException.java +++ b/src/net/pterodactylus/fcp/highlevel/NotConnectedException.java @@ -8,7 +8,7 @@ package net.pterodactylus.fcp.highlevel; * Exception that is thrown when an operation is tried on a not connected * connection. * - * @author David Roden + * @author David ‘Bombe’ Roden <bombe@freenetproject.org> */ public class NotConnectedException extends HighLevelException { -- 2.7.4