Chat class error

In line 174 of Chat.class it’'s typed:

Message message = new Message(participant, Message.Type.CHAT);

I think what you want is:

Message message = new Message(participant, Message.CHAT);

There’'s no static CHAT member in subclasse TYPE!

Message was edited by: Wizbang

Wizbang,

Yes there is. The change of the constants was fairly recent, so maybe you’'re mixing together different versions of the sources?

Regards,

Matt

You are right!!! My apologies!

It was a CVS error that don’'t update the file!