diff options
| author | Paul Buetow <paul@buetow.org> | 2008-05-18 21:44:09 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2008-05-18 21:44:09 +0000 |
| commit | 34b16d2ffc7b40df933ba85ddb8e414121116ca5 (patch) | |
| tree | b7ba976bb34f9ec51acd10dca935b9a33d9e01f8 /sources/protocols | |
| parent | ace76b508e2f6c1bc420112306ebee52f478de13 (diff) | |
new Task Manager works :-)
Diffstat (limited to 'sources/protocols')
| -rw-r--r-- | sources/protocols/VSProtocol.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/protocols/VSProtocol.java b/sources/protocols/VSProtocol.java index 71b819f..6888d95 100644 --- a/sources/protocols/VSProtocol.java +++ b/sources/protocols/VSProtocol.java @@ -17,7 +17,7 @@ abstract public class VSProtocol extends VSEvent { } private final boolean isIncorrectProtocol(VSMessage message) { - return !message.getClassname().equals(getClassname()); + return !message.getProtocolClassname().equals(getClassname()); } public final void onStart() { |
