1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-08 08:23:11 +00:00

Javadoc improvement and renamed IDProvider#createID(Object) to

resolveID(Object)

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-07-30 22:36:16 -03:00
parent 17fb84faab
commit b7d3738c0b
26 changed files with 69 additions and 44 deletions

View File

@@ -58,7 +58,7 @@ public class DatabaseChatLoggingService extends AbstractService implements
switch (channel.getMessageType()) {
case SHOUT: // if type is SHOUT the ChannelID is the CharacterID
// (target)
message.setTarget(charIdProvider.createID(channel.getChannelID()));
message.setTarget(charIdProvider.resolveID(channel.getChannelID()));
break;
default:
message.setChannelID(channel.getChannelID());