~ubuntu-branches/ubuntu/feisty/nant/feisty

« back to all changes in this revision

Viewing changes to src/NAnt.Core/Filters/TabsToSpaces.cs

  • Committer: Bazaar Package Importer
  • Author(s): Dave Beckett
  • Date: 2006-06-12 23:30:36 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060612233036-a1uwh0949z0218ep
Tags: 0.84+0.85-rc4-1
* New upstream release
* Acknowledge NMU (Closes: #372588)
* Standards-Version 3.7.2
* Update to latest CLI policy package split.  Build-Depends-Indep: on
  cli-common-dev, libmono-winforms1.0-cil, libmono-winforms2.0-cil and
  mono-gmcs to get 1.0 and 2.0 packages
* Removed patches no longer needed:
  - 01-AssemblyInfoTask.cs.patch
  - 02-ScriptTask.cs.patch
  - 03-XmlResultFormatter.cs.patch
  - 04-SourceControl.patch
  - 05-ExceptionTest.cs

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
//
18
18
 
19
19
using System;
20
 
using System.IO;
21
 
using System.Globalization;
22
 
 
23
20
using NAnt.Core.Attributes;
 
21
using NAnt.Core.Util;
24
22
 
25
23
namespace NAnt.Core.Filters {
26
24
    /// <summary>
95
93
        /// <returns>-1 if end of stream otherwise a character</returns>
96
94
        public override int Peek() {
97
95
            //Need to maintain seperate state for Read and Peek for this to work
98
 
            throw new ApplicationException("Peek currently is not supported.");
 
96
            throw new ApplicationException(ResourceUtils.GetString("String_PeekNotSupported"));
99
97
        }
100
98
 
101
99
        /// <summary>