~ubuntu-branches/ubuntu/oneiric/monodevelop/oneiric-updates

« back to all changes in this revision

Viewing changes to contrib/Mono.Cecil/Mono.Cecil/Mono.Xml/SmallXmlParser.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2009-02-18 08:40:51 UTC
  • mfrom: (1.2.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090218084051-gh8m6ukvokbwj7cf
Tags: 1.9.2+dfsg-1ubuntu1
* Merge from Debian Experimental (LP: #330519), remaining Ubuntu changes:
  + debian/control:
    - Update for Gnome# 2.24
    - Add libmono-cairo1.0-cil to build-deps to fool pkg-config check

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
 
39
39
namespace Mono.Xml
40
40
{
41
 
        internal class DefaultHandler : SmallXmlParser.IContentHandler
 
41
        internal sealed class DefaultHandler : SmallXmlParser.IContentHandler
42
42
        {
43
43
                public void OnStartParsing (SmallXmlParser parser)
44
44
                {
93
93
                        string [] Values { get; }
94
94
                }
95
95
 
96
 
                class AttrListImpl : IAttrList
 
96
                sealed class AttrListImpl : IAttrList
97
97
                {
98
98
                        public int Length {
99
99
                                get { return attrNames.Count; }
611
611
                }
612
612
        }
613
613
 
614
 
        internal class SmallXmlParserException : SystemException
 
614
        internal sealed class SmallXmlParserException : SystemException
615
615
        {
616
616
                int line;
617
617
                int column;