Skip to content

Commit 80d07c4

Browse files
committed
Remove out of date unneeded copyright / license comments
1 parent f0bf3cd commit 80d07c4

11 files changed

+0
-77
lines changed

packages/pg/lib/client.js

-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
11
'use strict'
2-
/**
3-
* Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com)
4-
* All rights reserved.
5-
*
6-
* This source code is licensed under the MIT license found in the
7-
* README.md file in the root directory of this source tree.
8-
*/
92

103
var EventEmitter = require('events').EventEmitter
114
var util = require('util')

packages/pg/lib/connection-parameters.js

-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
11
'use strict'
2-
/**
3-
* Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com)
4-
* All rights reserved.
5-
*
6-
* This source code is licensed under the MIT license found in the
7-
* README.md file in the root directory of this source tree.
8-
*/
92

103
var dns = require('dns')
114

packages/pg/lib/connection.js

-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
11
'use strict'
2-
/**
3-
* Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com)
4-
* All rights reserved.
5-
*
6-
* This source code is licensed under the MIT license found in the
7-
* README.md file in the root directory of this source tree.
8-
*/
92

103
var net = require('net')
114
var EventEmitter = require('events').EventEmitter

packages/pg/lib/defaults.js

-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
11
'use strict'
2-
/**
3-
* Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com)
4-
* All rights reserved.
5-
*
6-
* This source code is licensed under the MIT license found in the
7-
* README.md file in the root directory of this source tree.
8-
*/
92

103
module.exports = {
114
// database host. defaults to localhost

packages/pg/lib/index.js

-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
11
'use strict'
2-
/**
3-
* Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com)
4-
* All rights reserved.
5-
*
6-
* This source code is licensed under the MIT license found in the
7-
* README.md file in the root directory of this source tree.
8-
*/
92

103
var Client = require('./client')
114
var defaults = require('./defaults')

packages/pg/lib/native/client.js

-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
11
'use strict'
2-
/**
3-
* Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com)
4-
* All rights reserved.
5-
*
6-
* This source code is licensed under the MIT license found in the
7-
* README.md file in the root directory of this source tree.
8-
*/
92

103
// eslint-disable-next-line
114
var Native = require('pg-native')

packages/pg/lib/native/query.js

-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
11
'use strict'
2-
/**
3-
* Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com)
4-
* All rights reserved.
5-
*
6-
* This source code is licensed under the MIT license found in the
7-
* README.md file in the root directory of this source tree.
8-
*/
92

103
var EventEmitter = require('events').EventEmitter
114
var util = require('util')

packages/pg/lib/query.js

-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
11
'use strict'
2-
/**
3-
* Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com)
4-
* All rights reserved.
5-
*
6-
* This source code is licensed under the MIT license found in the
7-
* README.md file in the root directory of this source tree.
8-
*/
92

103
const { EventEmitter } = require('events')
114

packages/pg/lib/result.js

-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
11
'use strict'
2-
/**
3-
* Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com)
4-
* All rights reserved.
5-
*
6-
* This source code is licensed under the MIT license found in the
7-
* README.md file in the root directory of this source tree.
8-
*/
92

103
var types = require('pg-types')
114

packages/pg/lib/type-overrides.js

-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
11
'use strict'
2-
/**
3-
* Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com)
4-
* All rights reserved.
5-
*
6-
* This source code is licensed under the MIT license found in the
7-
* README.md file in the root directory of this source tree.
8-
*/
92

103
var types = require('pg-types')
114

packages/pg/lib/utils.js

-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
11
'use strict'
2-
/**
3-
* Copyright (c) 2010-2017 Brian Carlson (brian.m.carlson@gmail.com)
4-
* All rights reserved.
5-
*
6-
* This source code is licensed under the MIT license found in the
7-
* README.md file in the root directory of this source tree.
8-
*/
92

103
const crypto = require('crypto')
114

0 commit comments

Comments
 (0)