Skip to content

Commit 844485d

Browse files
viktorklangktoso
authored andcommitted
Fixes reactive-streams#333 by adding license headers to /examples/*
1 parent d0d6051 commit 844485d

10 files changed

+110
-0
lines changed

Diff for: examples/src/main/java/org/reactivestreams/example/unicast/AsyncIterablePublisher.java

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/************************************************************************
2+
* Licensed under Public Domain (CC0) *
3+
* *
4+
* To the extent possible under law, the person who associated CC0 with *
5+
* this code has waived all copyright and related or neighboring *
6+
* rights to this code. *
7+
* *
8+
* You should have received a copy of the CC0 legalcode along with this *
9+
* work. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.*
10+
************************************************************************/
11+
112
package org.reactivestreams.example.unicast;
213

314
import org.reactivestreams.Publisher;

Diff for: examples/src/main/java/org/reactivestreams/example/unicast/AsyncSubscriber.java

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/************************************************************************
2+
* Licensed under Public Domain (CC0) *
3+
* *
4+
* To the extent possible under law, the person who associated CC0 with *
5+
* this code has waived all copyright and related or neighboring *
6+
* rights to this code. *
7+
* *
8+
* You should have received a copy of the CC0 legalcode along with this *
9+
* work. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.*
10+
************************************************************************/
11+
112
package org.reactivestreams.example.unicast;
213

314
import org.reactivestreams.Subscriber;

Diff for: examples/src/main/java/org/reactivestreams/example/unicast/InfiniteIncrementNumberPublisher.java

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/************************************************************************
2+
* Licensed under Public Domain (CC0) *
3+
* *
4+
* To the extent possible under law, the person who associated CC0 with *
5+
* this code has waived all copyright and related or neighboring *
6+
* rights to this code. *
7+
* *
8+
* You should have received a copy of the CC0 legalcode along with this *
9+
* work. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.*
10+
************************************************************************/
11+
112
package org.reactivestreams.example.unicast;
213

314
import java.util.Iterator;

Diff for: examples/src/main/java/org/reactivestreams/example/unicast/NumberIterablePublisher.java

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/************************************************************************
2+
* Licensed under Public Domain (CC0) *
3+
* *
4+
* To the extent possible under law, the person who associated CC0 with *
5+
* this code has waived all copyright and related or neighboring *
6+
* rights to this code. *
7+
* *
8+
* You should have received a copy of the CC0 legalcode along with this *
9+
* work. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.*
10+
************************************************************************/
11+
112
package org.reactivestreams.example.unicast;
213

314
import java.util.Collections;

Diff for: examples/src/main/java/org/reactivestreams/example/unicast/SyncSubscriber.java

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/************************************************************************
2+
* Licensed under Public Domain (CC0) *
3+
* *
4+
* To the extent possible under law, the person who associated CC0 with *
5+
* this code has waived all copyright and related or neighboring *
6+
* rights to this code. *
7+
* *
8+
* You should have received a copy of the CC0 legalcode along with this *
9+
* work. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.*
10+
************************************************************************/
11+
112
package org.reactivestreams.example.unicast;
213

314
import org.reactivestreams.Subscriber;

Diff for: examples/src/test/java/org/reactivestreams/example/unicast/AsyncSubscriberTest.java

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/************************************************************************
2+
* Licensed under Public Domain (CC0) *
3+
* *
4+
* To the extent possible under law, the person who associated CC0 with *
5+
* this code has waived all copyright and related or neighboring *
6+
* rights to this code. *
7+
* *
8+
* You should have received a copy of the CC0 legalcode along with this *
9+
* work. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.*
10+
************************************************************************/
11+
112
package org.reactivestreams.example.unicast;
213

314
import org.reactivestreams.Publisher;

Diff for: examples/src/test/java/org/reactivestreams/example/unicast/IterablePublisherTest.java

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/************************************************************************
2+
* Licensed under Public Domain (CC0) *
3+
* *
4+
* To the extent possible under law, the person who associated CC0 with *
5+
* this code has waived all copyright and related or neighboring *
6+
* rights to this code. *
7+
* *
8+
* You should have received a copy of the CC0 legalcode along with this *
9+
* work. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.*
10+
************************************************************************/
11+
112
package org.reactivestreams.example.unicast;
213

314
import java.lang.Override;

Diff for: examples/src/test/java/org/reactivestreams/example/unicast/SyncSubscriberTest.java

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/************************************************************************
2+
* Licensed under Public Domain (CC0) *
3+
* *
4+
* To the extent possible under law, the person who associated CC0 with *
5+
* this code has waived all copyright and related or neighboring *
6+
* rights to this code. *
7+
* *
8+
* You should have received a copy of the CC0 legalcode along with this *
9+
* work. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.*
10+
************************************************************************/
11+
112
package org.reactivestreams.example.unicast;
213

314
import org.reactivestreams.Subscriber;

Diff for: examples/src/test/java/org/reactivestreams/example/unicast/SyncSubscriberWhiteboxTest.java

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/************************************************************************
2+
* Licensed under Public Domain (CC0) *
3+
* *
4+
* To the extent possible under law, the person who associated CC0 with *
5+
* this code has waived all copyright and related or neighboring *
6+
* rights to this code. *
7+
* *
8+
* You should have received a copy of the CC0 legalcode along with this *
9+
* work. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.*
10+
************************************************************************/
11+
112
package org.reactivestreams.example.unicast;
213

314
import org.reactivestreams.Subscriber;

Diff for: examples/src/test/java/org/reactivestreams/example/unicast/UnboundedIntegerIncrementPublisherTest.java

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/************************************************************************
2+
* Licensed under Public Domain (CC0) *
3+
* *
4+
* To the extent possible under law, the person who associated CC0 with *
5+
* this code has waived all copyright and related or neighboring *
6+
* rights to this code. *
7+
* *
8+
* You should have received a copy of the CC0 legalcode along with this *
9+
* work. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.*
10+
************************************************************************/
11+
112
package org.reactivestreams.example.unicast;
213

314
import org.reactivestreams.Publisher;

0 commit comments

Comments
 (0)