From: Kevin W. <kev...@us...> - 2004-12-31 22:32:39
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/SqlTypes In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10504 Modified Files: DoubleSqlType.cs GuidSqlType.cs Int16SqlType.cs Int32SqlType.cs Int64SqlType.cs Log Message: fixing xml comments and letting ReSharper do reformatting Index: Int64SqlType.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/SqlTypes/Int64SqlType.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Int64SqlType.cs 11 Dec 2004 16:28:28 -0000 1.4 --- Int64SqlType.cs 31 Dec 2004 22:32:27 -0000 1.5 *************** *** 2,6 **** using System.Data; ! namespace NHibernate.SqlTypes { /// <summary> --- 2,6 ---- using System.Data; ! namespace NHibernate.SqlTypes { /// <summary> *************** *** 17,21 **** /// Initializes a new instance of the <see cref="Int64SqlType"/> class. /// </summary> ! public Int64SqlType(): base(DbType.Int64) { } --- 17,21 ---- /// Initializes a new instance of the <see cref="Int64SqlType"/> class. /// </summary> ! public Int64SqlType() : base( DbType.Int64 ) { } Index: GuidSqlType.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/SqlTypes/GuidSqlType.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** GuidSqlType.cs 11 Dec 2004 16:28:28 -0000 1.3 --- GuidSqlType.cs 31 Dec 2004 22:32:27 -0000 1.4 *************** *** 17,23 **** /// Initializes a new instance of the <see cref="GuidSqlType"/> class. /// </summary> ! public GuidSqlType() : base(DbType.Guid) { } } ! } --- 17,23 ---- /// Initializes a new instance of the <see cref="GuidSqlType"/> class. /// </summary> ! public GuidSqlType() : base( DbType.Guid ) { } } ! } \ No newline at end of file Index: DoubleSqlType.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/SqlTypes/DoubleSqlType.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** DoubleSqlType.cs 11 Dec 2004 16:28:28 -0000 1.4 --- DoubleSqlType.cs 31 Dec 2004 22:32:27 -0000 1.5 *************** *** 2,6 **** using System.Data; ! namespace NHibernate.SqlTypes { /// <summary> --- 2,6 ---- using System.Data; ! namespace NHibernate.SqlTypes { /// <summary> *************** *** 12,21 **** /// </remarks> [Serializable] ! public class DoubleSqlType : SqlType { /// <summary> /// Initializes a new instance of the <see cref="DoubleSqlType"/> class. /// </summary> ! public DoubleSqlType() : base(DbType.Double) { } --- 12,21 ---- /// </remarks> [Serializable] ! public class DoubleSqlType : SqlType { /// <summary> /// Initializes a new instance of the <see cref="DoubleSqlType"/> class. /// </summary> ! public DoubleSqlType() : base( DbType.Double ) { } Index: Int16SqlType.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/SqlTypes/Int16SqlType.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Int16SqlType.cs 11 Dec 2004 16:28:28 -0000 1.4 --- Int16SqlType.cs 31 Dec 2004 22:32:27 -0000 1.5 *************** *** 2,6 **** using System.Data; ! namespace NHibernate.SqlTypes { /// <summary> --- 2,6 ---- using System.Data; ! namespace NHibernate.SqlTypes { /// <summary> *************** *** 17,23 **** /// Initializes a new instance of the <see cref="Int16SqlType"/> class. /// </summary> ! public Int16SqlType(): base(DbType.Int16) { } } ! } --- 17,23 ---- /// Initializes a new instance of the <see cref="Int16SqlType"/> class. /// </summary> ! public Int16SqlType() : base( DbType.Int16 ) { } } ! } \ No newline at end of file Index: Int32SqlType.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/SqlTypes/Int32SqlType.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Int32SqlType.cs 11 Dec 2004 16:28:28 -0000 1.4 --- Int32SqlType.cs 31 Dec 2004 22:32:27 -0000 1.5 *************** *** 2,6 **** using System.Data; ! namespace NHibernate.SqlTypes { /// <summary> --- 2,6 ---- using System.Data; ! namespace NHibernate.SqlTypes { /// <summary> *************** *** 17,24 **** /// Initializes a new instance of the <see cref="Int32SqlType"/> class. /// </summary> ! public Int32SqlType(): base(DbType.Int32) { } } ! } --- 17,24 ---- /// Initializes a new instance of the <see cref="Int32SqlType"/> class. /// </summary> ! public Int32SqlType() : base( DbType.Int32 ) { } } ! } \ No newline at end of file |