- From: Thomas Gambet via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 23 Sep 2009 09:23:16 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/src/org/w3c/unicorn/util In directory hutz:/tmp/cvs-serv15125/src/org/w3c/unicorn/util Modified Files: Message.java Log Message: new constructor without the content parameter Index: Message.java =================================================================== RCS file: /sources/public/2006/unicorn/src/org/w3c/unicorn/util/Message.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Message.java 8 Sep 2009 14:55:54 -0000 1.2 +++ Message.java 23 Sep 2009 09:23:14 -0000 1.3 @@ -29,6 +29,11 @@ this.message = message; this.content = content; } + + public Message(Level level, String message) { + this.level = level; + this.message = message; + } public String getMessage() { return message;
Received on Wednesday, 23 September 2009 09:23:26 UTC