Index: EchoTask.cs
===================================================================
RCS file: /cvsroot/nant/nant/src/NAnt.Core/Tasks/EchoTask.cs,v
retrieving revision 1.2
diff -u -r1.2 EchoTask.cs
--- EchoTask.cs	20 Feb 2003 02:10:13 -0000	1.2
+++ EchoTask.cs	6 Mar 2003 21:34:40 -0000
@@ -50,7 +50,7 @@
             get { return _message; }
             set {
                 if (_contents !=null && value != null && value.Trim().Length > 0) {
-                    throw new ValidationException("Inline content and the message attribute are mutually exclusive in the echo task.", _location);
+                    throw new ValidationException("Inline content and the message attribute are mutually exclusive in the echo task.", Location);
                 } else {
                     _message = value; 
                 }
@@ -61,7 +61,7 @@
             get { return _contents; }
             set { 
                 if (_message != null && value != null && value.Trim().Length > 0) {
-                    throw new ValidationException("Inline content and the message attribute are mutually exclusive in the echo task.", _location);
+                    throw new ValidationException("Inline content and the message attribute are mutually exclusive in the echo task.", Location);
                 } else {
                     _contents = value;
                 }
