Skip to content

Commit 17ed69a

Browse files
committed
Remove license header from source files
1 parent 0a804a8 commit 17ed69a

20 files changed

+26
-486
lines changed

src/EntityFramework6.Npgsql/NpgsqlConnectionFactory.cs

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,4 @@
1-
#region License
2-
// The PostgreSQL License
3-
//
4-
// Copyright (C) 2016 The Npgsql Development Team
5-
//
6-
// Permission to use, copy, modify, and distribute this software and its
7-
// documentation for any purpose, without fee, and without a written
8-
// agreement is hereby granted, provided that the above copyright notice
9-
// and this paragraph and the following two paragraphs appear in all copies.
10-
//
11-
// IN NO EVENT SHALL THE NPGSQL DEVELOPMENT TEAM BE LIABLE TO ANY PARTY
12-
// FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES,
13-
// INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS
14-
// DOCUMENTATION, EVEN IF THE NPGSQL DEVELOPMENT TEAM HAS BEEN ADVISED OF
15-
// THE POSSIBILITY OF SUCH DAMAGE.
16-
//
17-
// THE NPGSQL DEVELOPMENT TEAM SPECIFICALLY DISCLAIMS ANY WARRANTIES,
18-
// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
19-
// AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
20-
// ON AN "AS IS" BASIS, AND THE NPGSQL DEVELOPMENT TEAM HAS NO OBLIGATIONS
21-
// TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
22-
#endregion
23-
24-
using System.Data.Common;
1+
using System.Data.Common;
252
using System.Data.Entity.Infrastructure;
263

274
namespace Npgsql

src/EntityFramework6.Npgsql/NpgsqlMigrationSqlGenerator.cs

Lines changed: 2 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,4 @@
1-
#region License
2-
// The PostgreSQL License
3-
//
4-
// Copyright (C) 2016 The Npgsql Development Team
5-
//
6-
// Permission to use, copy, modify, and distribute this software and its
7-
// documentation for any purpose, without fee, and without a written
8-
// agreement is hereby granted, provided that the above copyright notice
9-
// and this paragraph and the following two paragraphs appear in all copies.
10-
//
11-
// IN NO EVENT SHALL THE NPGSQL DEVELOPMENT TEAM BE LIABLE TO ANY PARTY
12-
// FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES,
13-
// INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS
14-
// DOCUMENTATION, EVEN IF THE NPGSQL DEVELOPMENT TEAM HAS BEEN ADVISED OF
15-
// THE POSSIBILITY OF SUCH DAMAGE.
16-
//
17-
// THE NPGSQL DEVELOPMENT TEAM SPECIFICALLY DISCLAIMS ANY WARRANTIES,
18-
// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
19-
// AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
20-
// ON AN "AS IS" BASIS, AND THE NPGSQL DEVELOPMENT TEAM HAS NO OBLIGATIONS
21-
// TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
22-
#endregion
23-
24-
using System;
1+
using System;
252
using System.Collections.Generic;
263
using System.Data.Entity.Migrations.Model;
274
using System.Data.Entity.Migrations.Sql;
@@ -436,7 +413,7 @@ protected virtual void Convert(RenameIndexOperation renameIndexOperation)
436413
string GetSchemaNameFromFullTableName(string tableFullName)
437414
{
438415
var dotIndex = tableFullName.IndexOf('.');
439-
return dotIndex != -1 ? tableFullName.Remove(dotIndex) : "dto";
416+
return dotIndex != -1 ? tableFullName.Remove(dotIndex) : "dto";
440417
//TODO: Check always setting dto schema if no schema in table name is not bug
441418
}
442419

src/EntityFramework6.Npgsql/NpgsqlProviderManifest.cs

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,4 @@
1-
#region License
2-
// The PostgreSQL License
3-
//
4-
// Copyright (C) 2016 The Npgsql Development Team
5-
//
6-
// Permission to use, copy, modify, and distribute this software and its
7-
// documentation for any purpose, without fee, and without a written
8-
// agreement is hereby granted, provided that the above copyright notice
9-
// and this paragraph and the following two paragraphs appear in all copies.
10-
//
11-
// IN NO EVENT SHALL THE NPGSQL DEVELOPMENT TEAM BE LIABLE TO ANY PARTY
12-
// FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES,
13-
// INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS
14-
// DOCUMENTATION, EVEN IF THE NPGSQL DEVELOPMENT TEAM HAS BEEN ADVISED OF
15-
// THE POSSIBILITY OF SUCH DAMAGE.
16-
//
17-
// THE NPGSQL DEVELOPMENT TEAM SPECIFICALLY DISCLAIMS ANY WARRANTIES,
18-
// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
19-
// AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
20-
// ON AN "AS IS" BASIS, AND THE NPGSQL DEVELOPMENT TEAM HAS NO OBLIGATIONS
21-
// TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
22-
#endregion
23-
24-
using System;
1+
using System;
252
using System.Collections.Generic;
263
using System.Data.Entity;
274
using System.Data.Entity.Core.Common;

src/EntityFramework6.Npgsql/NpgsqlServices.cs

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,4 @@
1-
#region License
2-
// The PostgreSQL License
3-
//
4-
// Copyright (C) 2016 The Npgsql Development Team
5-
//
6-
// Permission to use, copy, modify, and distribute this software and its
7-
// documentation for any purpose, without fee, and without a written
8-
// agreement is hereby granted, provided that the above copyright notice
9-
// and this paragraph and the following two paragraphs appear in all copies.
10-
//
11-
// IN NO EVENT SHALL THE NPGSQL DEVELOPMENT TEAM BE LIABLE TO ANY PARTY
12-
// FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES,
13-
// INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS
14-
// DOCUMENTATION, EVEN IF THE NPGSQL DEVELOPMENT TEAM HAS BEEN ADVISED OF
15-
// THE POSSIBILITY OF SUCH DAMAGE.
16-
//
17-
// THE NPGSQL DEVELOPMENT TEAM SPECIFICALLY DISCLAIMS ANY WARRANTIES,
18-
// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
19-
// AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
20-
// ON AN "AS IS" BASIS, AND THE NPGSQL DEVELOPMENT TEAM HAS NO OBLIGATIONS
21-
// TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
22-
#endregion
23-
24-
using System;
1+
using System;
252
using System.Text;
263
using JetBrains.Annotations;
274
using System.Data.Entity.Core.Common;

src/EntityFramework6.Npgsql/SqlGenerators/PendingProjectsNode.cs

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,4 @@
1-
#region License
2-
// The PostgreSQL License
3-
//
4-
// Copyright (C) 2016 The Npgsql Development Team
5-
//
6-
// Permission to use, copy, modify, and distribute this software and its
7-
// documentation for any purpose, without fee, and without a written
8-
// agreement is hereby granted, provided that the above copyright notice
9-
// and this paragraph and the following two paragraphs appear in all copies.
10-
//
11-
// IN NO EVENT SHALL THE NPGSQL DEVELOPMENT TEAM BE LIABLE TO ANY PARTY
12-
// FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES,
13-
// INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS
14-
// DOCUMENTATION, EVEN IF THE NPGSQL DEVELOPMENT TEAM HAS BEEN ADVISED OF
15-
// THE POSSIBILITY OF SUCH DAMAGE.
16-
//
17-
// THE NPGSQL DEVELOPMENT TEAM SPECIFICALLY DISCLAIMS ANY WARRANTIES,
18-
// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
19-
// AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
20-
// ON AN "AS IS" BASIS, AND THE NPGSQL DEVELOPMENT TEAM HAS NO OBLIGATIONS
21-
// TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
22-
#endregion
23-
24-
using System.Collections.Generic;
1+
using System.Collections.Generic;
252

263
namespace Npgsql.SqlGenerators
274
{

src/EntityFramework6.Npgsql/SqlGenerators/SqlBaseGenerator.cs

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,4 @@
1-
#region License
2-
// The PostgreSQL License
3-
//
4-
// Copyright (C) 2016 The Npgsql Development Team
5-
//
6-
// Permission to use, copy, modify, and distribute this software and its
7-
// documentation for any purpose, without fee, and without a written
8-
// agreement is hereby granted, provided that the above copyright notice
9-
// and this paragraph and the following two paragraphs appear in all copies.
10-
//
11-
// IN NO EVENT SHALL THE NPGSQL DEVELOPMENT TEAM BE LIABLE TO ANY PARTY
12-
// FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES,
13-
// INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS
14-
// DOCUMENTATION, EVEN IF THE NPGSQL DEVELOPMENT TEAM HAS BEEN ADVISED OF
15-
// THE POSSIBILITY OF SUCH DAMAGE.
16-
//
17-
// THE NPGSQL DEVELOPMENT TEAM SPECIFICALLY DISCLAIMS ANY WARRANTIES,
18-
// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
19-
// AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
20-
// ON AN "AS IS" BASIS, AND THE NPGSQL DEVELOPMENT TEAM HAS NO OBLIGATIONS
21-
// TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
22-
#endregion
23-
24-
using System;
1+
using System;
252
using System.Collections.Generic;
263
using System.Data.Common;
274
using System.Diagnostics;

src/EntityFramework6.Npgsql/SqlGenerators/SqlDeleteGenerator.cs

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,4 @@
1-
#region License
2-
// The PostgreSQL License
3-
//
4-
// Copyright (C) 2016 The Npgsql Development Team
5-
//
6-
// Permission to use, copy, modify, and distribute this software and its
7-
// documentation for any purpose, without fee, and without a written
8-
// agreement is hereby granted, provided that the above copyright notice
9-
// and this paragraph and the following two paragraphs appear in all copies.
10-
//
11-
// IN NO EVENT SHALL THE NPGSQL DEVELOPMENT TEAM BE LIABLE TO ANY PARTY
12-
// FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES,
13-
// INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS
14-
// DOCUMENTATION, EVEN IF THE NPGSQL DEVELOPMENT TEAM HAS BEEN ADVISED OF
15-
// THE POSSIBILITY OF SUCH DAMAGE.
16-
//
17-
// THE NPGSQL DEVELOPMENT TEAM SPECIFICALLY DISCLAIMS ANY WARRANTIES,
18-
// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
19-
// AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
20-
// ON AN "AS IS" BASIS, AND THE NPGSQL DEVELOPMENT TEAM HAS NO OBLIGATIONS
21-
// TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
22-
#endregion
23-
24-
using System;
1+
using System;
252
using System.Data.Common;
263
using System.Data.Entity.Core.Common.CommandTrees;
274

src/EntityFramework6.Npgsql/SqlGenerators/SqlInsertGenerator.cs

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,4 @@
1-
#region License
2-
// The PostgreSQL License
3-
//
4-
// Copyright (C) 2016 The Npgsql Development Team
5-
//
6-
// Permission to use, copy, modify, and distribute this software and its
7-
// documentation for any purpose, without fee, and without a written
8-
// agreement is hereby granted, provided that the above copyright notice
9-
// and this paragraph and the following two paragraphs appear in all copies.
10-
//
11-
// IN NO EVENT SHALL THE NPGSQL DEVELOPMENT TEAM BE LIABLE TO ANY PARTY
12-
// FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES,
13-
// INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS
14-
// DOCUMENTATION, EVEN IF THE NPGSQL DEVELOPMENT TEAM HAS BEEN ADVISED OF
15-
// THE POSSIBILITY OF SUCH DAMAGE.
16-
//
17-
// THE NPGSQL DEVELOPMENT TEAM SPECIFICALLY DISCLAIMS ANY WARRANTIES,
18-
// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
19-
// AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
20-
// ON AN "AS IS" BASIS, AND THE NPGSQL DEVELOPMENT TEAM HAS NO OBLIGATIONS
21-
// TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
22-
#endregion
23-
24-
using System;
1+
using System;
252
using System.Collections.Generic;
263
using System.Data.Common;
274
using System.Data.Entity.Core.Common.CommandTrees;

src/EntityFramework6.Npgsql/SqlGenerators/SqlSelectGenerator.cs

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,4 @@
1-
#region License
2-
// The PostgreSQL License
3-
//
4-
// Copyright (C) 2016 The Npgsql Development Team
5-
//
6-
// Permission to use, copy, modify, and distribute this software and its
7-
// documentation for any purpose, without fee, and without a written
8-
// agreement is hereby granted, provided that the above copyright notice
9-
// and this paragraph and the following two paragraphs appear in all copies.
10-
//
11-
// IN NO EVENT SHALL THE NPGSQL DEVELOPMENT TEAM BE LIABLE TO ANY PARTY
12-
// FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES,
13-
// INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS
14-
// DOCUMENTATION, EVEN IF THE NPGSQL DEVELOPMENT TEAM HAS BEEN ADVISED OF
15-
// THE POSSIBILITY OF SUCH DAMAGE.
16-
//
17-
// THE NPGSQL DEVELOPMENT TEAM SPECIFICALLY DISCLAIMS ANY WARRANTIES,
18-
// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
19-
// AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
20-
// ON AN "AS IS" BASIS, AND THE NPGSQL DEVELOPMENT TEAM HAS NO OBLIGATIONS
21-
// TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
22-
#endregion
23-
24-
using System;
1+
using System;
252
using System.Linq;
263
using System.Data.Common;
274
using System.Diagnostics;

src/EntityFramework6.Npgsql/SqlGenerators/SqlUpdateGenerator.cs

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,4 @@
1-
#region License
2-
// The PostgreSQL License
3-
//
4-
// Copyright (C) 2016 The Npgsql Development Team
5-
//
6-
// Permission to use, copy, modify, and distribute this software and its
7-
// documentation for any purpose, without fee, and without a written
8-
// agreement is hereby granted, provided that the above copyright notice
9-
// and this paragraph and the following two paragraphs appear in all copies.
10-
//
11-
// IN NO EVENT SHALL THE NPGSQL DEVELOPMENT TEAM BE LIABLE TO ANY PARTY
12-
// FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES,
13-
// INCLUDING LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS
14-
// DOCUMENTATION, EVEN IF THE NPGSQL DEVELOPMENT TEAM HAS BEEN ADVISED OF
15-
// THE POSSIBILITY OF SUCH DAMAGE.
16-
//
17-
// THE NPGSQL DEVELOPMENT TEAM SPECIFICALLY DISCLAIMS ANY WARRANTIES,
18-
// INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
19-
// AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
20-
// ON AN "AS IS" BASIS, AND THE NPGSQL DEVELOPMENT TEAM HAS NO OBLIGATIONS
21-
// TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
22-
#endregion
23-
24-
using System;
1+
using System;
252
using System.Data.Common;
263
using System.Data.Entity.Core.Common.CommandTrees;
274

0 commit comments

Comments
 (0)