From 83301cd183be06e77af813f1ef132530a15646cc Mon Sep 17 00:00:00 2001 From: Trustin Lee Date: Thu, 12 Mar 2009 14:53:04 +0000 Subject: [PATCH] Added a link to the Java tutorial which inspired the QOTM example --- .../org/jboss/netty/example/qotm/QuoteOfTheMomentClient.java | 2 ++ .../org/jboss/netty/example/qotm/QuoteOfTheMomentServer.java | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/main/java/org/jboss/netty/example/qotm/QuoteOfTheMomentClient.java b/src/main/java/org/jboss/netty/example/qotm/QuoteOfTheMomentClient.java index be1a082777..3731cde219 100644 --- a/src/main/java/org/jboss/netty/example/qotm/QuoteOfTheMomentClient.java +++ b/src/main/java/org/jboss/netty/example/qotm/QuoteOfTheMomentClient.java @@ -37,6 +37,8 @@ import org.jboss.netty.handler.codec.string.StringEncoder; * A UDP broadcast client that asks for a quote of the moment (QOTM) to * {@link QuoteOfTheMomentServer}. * + * Inspired by the official Java tutorial. + * * @author The Netty Project (netty-dev@lists.jboss.org) * @author Trustin Lee (tlee@redhat.com) * @version $Rev$, $Date$ diff --git a/src/main/java/org/jboss/netty/example/qotm/QuoteOfTheMomentServer.java b/src/main/java/org/jboss/netty/example/qotm/QuoteOfTheMomentServer.java index cbe62d8035..d37a20afcf 100644 --- a/src/main/java/org/jboss/netty/example/qotm/QuoteOfTheMomentServer.java +++ b/src/main/java/org/jboss/netty/example/qotm/QuoteOfTheMomentServer.java @@ -37,6 +37,8 @@ import org.jboss.netty.handler.codec.string.StringEncoder; * A UDP server that responds to the QOTM (quote of the moment) request to a * {@link QuoteOfTheMomentClient}. * + * Inspired by the official Java tutorial. + * * @author The Netty Project (netty-dev@lists.jboss.org) * @author Trustin Lee (tlee@redhat.com) * @version $Rev$, $Date$