mirror of
https://github.com/2006-Scape/apollo.git
synced 2026-07-03 00:38:21 +00:00
Improve comments.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user