From 0d367c9cf7d517cda40c76a2cf54488052e5a499 Mon Sep 17 00:00:00 2001 From: Major- Date: Fri, 14 Feb 2014 22:02:56 +0000 Subject: [PATCH] Improve comments. --- src/org/apollo/Service.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/org/apollo/Service.java b/src/org/apollo/Service.java index 8a0dc3e0..16637b5f 100644 --- a/src/org/apollo/Service.java +++ b/src/org/apollo/Service.java @@ -10,24 +10,24 @@ public abstract class Service { /** * The server context. */ - private ServerContext ctx; + private ServerContext context; /** - * Gets the server context. + * Gets the {@link ServerContext}. * * @return The context. */ public final ServerContext getContext() { - return ctx; + return context; } /** - * Sets the server context. + * Sets the {@link ServerContext}. * - * @param ctx The context. + * @param context The context. */ - public final void setContext(ServerContext ctx) { - this.ctx = ctx; + public final void setContext(ServerContext context) { + this.context = context; } /**