[System.Data.Common] Add IDbColumnSchemaGenerator
[mono.git] / mcs / class / System.Security / System.Security.Cryptography.Xml / KeyInfoClause.cs
index 2ee2fff140f93d701b82320a2f1b6251943f2d2f..2a812f8993440520f5d09bb9076d089cde8c1206 100644 (file)
@@ -2,11 +2,10 @@
 // KeyInfoClause.cs - Abstract KeyInfoClause implementation for XML Signature
 //
 // Author:
-//     Sebastien Pouliot (spouliot@motus.com)
+//     Sebastien Pouliot <sebastien@ximian.com>
 //
 // (C) 2002, 2003 Motus Technologies Inc. (http://www.motus.com)
-//
-
+// Copyright (C) 2006 Novell Inc. (http://www.novell.com)
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
@@ -34,10 +33,12 @@ namespace System.Security.Cryptography.Xml {
 
        public abstract class KeyInfoClause {
 
-               public KeyInfoClause () {}
+               protected KeyInfoClause ()
+               {
+               }
 
                public abstract XmlElement GetXml ();
 
                public abstract void LoadXml (XmlElement element);
        }
-}
\ No newline at end of file
+}