Skip to content

Commit a8836e1

Browse files
committed
Remove Copyrights in README Examples
1 parent 95bb241 commit a8836e1

1 file changed

Lines changed: 0 additions & 9 deletions

File tree

README.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,6 @@ Bulk Inserting ``1,000,000``entities to a SQL Server 2016 database took ``5`` Se
6969
The domain model could be the ``Person`` class with a First Name, Last Name and a birth date.
7070

7171
```java
72-
// Copyright (c) Philipp Wagner and Victor Lee. All rights reserved.
73-
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
74-
7572
package de.bytefish.jsqlserverbulkinsert.test.model;
7673

7774
import java.time.LocalDate;
@@ -119,9 +116,6 @@ To bulk insert the ``Person`` data to a SQL Server database it is important to k
119116
between the Java Object and the Database Columns:
120117

121118
```java
122-
// Copyright (c) Philipp Wagner and Victor Lee. All rights reserved.
123-
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
124-
125119
package de.bytefish.jsqlserverbulkinsert.test.integration;
126120

127121
import de.bytefish.jsqlserverbulkinsert.mapping.AbstractMapping;
@@ -154,9 +148,6 @@ bulkInsert.saveAll(connection, persons.stream());
154148
And the full Integration Test:
155149

156150
```java
157-
// Copyright (c) Philipp Wagner and Victor Lee. All rights reserved.
158-
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
159-
160151
package de.bytefish.jsqlserverbulkinsert.test.integration;
161152

162153
import de.bytefish.jsqlserverbulkinsert.SqlServerBulkInsert;

0 commit comments

Comments
 (0)