minor cleanups

This commit is contained in:
zzz
2010-01-24 02:16:36 +00:00
parent f1c50b7fc3
commit fdfbab850a
3 changed files with 8 additions and 8 deletions

View File

@ -25,10 +25,10 @@ abstract class HandlerImpl implements I2CPMessageHandler {
public HandlerImpl(I2PAppContext context, int type) {
_context = context;
_type = type;
_log = new Log(getClass());
_log = context.logManager().getLog(getClass());
}
public int getType() {
return _type;
}
}
}