make topic impl return their names (easier to dbg)

This commit is contained in:
Costin Leau
2013-02-11 17:14:56 +02:00
parent 570abe6f9c
commit 74881befe8
2 changed files with 10 additions and 0 deletions

View File

@@ -72,4 +72,9 @@ public class ChannelTopic implements Topic {
}
return true;
}
@Override
public String toString() {
return channelName;
}
}

View File

@@ -62,4 +62,9 @@ public class PatternTopic implements Topic {
}
return true;
}
@Override
public String toString() {
return channelPattern;
}
}