From 5b5523beb97887a1f1370ac13189613d45769353 Mon Sep 17 00:00:00 2001 From: Ron Shapiro Date: Sat, 18 Oct 2014 20:42:06 -0400 Subject: [PATCH] Remove Netflix copyright ownership; Add license to files that didn't have it. --- CONTRIBUTING.md | 2 -- LICENSE | 2 -- .../rx/android/concurrency/AndroidSchedulers.java | 2 -- .../android/concurrency/HandlerThreadScheduler.java | 2 -- .../rx/android/events/OnCheckedChangeEvent.java | 13 +++++++++++++ src/main/java/rx/android/events/OnClickEvent.java | 13 +++++++++++++ .../java/rx/android/events/OnItemClickEvent.java | 13 +++++++++++++ .../java/rx/android/events/OnTextChangeEvent.java | 13 +++++++++++++ .../rx/android/observables/AndroidObservable.java | 2 -- .../java/rx/android/observables/Assertions.java | 2 -- .../java/rx/android/observables/ViewObservable.java | 2 -- .../operators/OperatorAdapterViewOnItemClick.java | 2 -- .../operators/OperatorBroadcastRegister.java | 2 -- .../operators/OperatorCompoundButtonInput.java | 2 -- .../operators/OperatorConditionalBinding.java | 2 -- .../operators/OperatorLocalBroadcastRegister.java | 2 -- .../operators/OperatorSharedPreferenceChange.java | 2 -- .../rx/android/operators/OperatorTextViewInput.java | 2 -- .../rx/android/operators/OperatorViewClick.java | 2 -- .../rx/android/schedulers/AndroidSchedulers.java | 2 -- .../android/schedulers/HandlerThreadScheduler.java | 2 -- .../android/subscriptions/AndroidSubscriptions.java | 2 -- .../android/observables/AndroidObservableTest.java | 2 -- .../OperatorAdapterViewOnItemClickTest.java | 2 -- .../operators/OperatorBroadcastRegisterTest.java | 2 -- .../operators/OperatorCompoundButtonInputTest.java | 2 -- .../operators/OperatorConditionalBindingTest.java | 2 -- .../OperatorLocalBroadcastRegisterTest.java | 2 -- .../OperatorSharedPreferencesChangeTest.java | 2 -- .../operators/OperatorTextViewInputTest.java | 2 -- .../rx/android/operators/OperatorViewClickTest.java | 2 -- .../schedulers/HandlerThreadSchedulerTest.java | 2 -- 32 files changed, 52 insertions(+), 56 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 96f81c42..5dd01aea 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -14,8 +14,6 @@ If you are adding a new file it should have a header like this: ``` /** - * Copyright 2014 Netflix, Inc. - * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at diff --git a/LICENSE b/LICENSE index 7f8ced0d..4fe2d187 100644 --- a/LICENSE +++ b/LICENSE @@ -187,8 +187,6 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2012 Netflix, Inc. - Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at diff --git a/src/main/java/rx/android/concurrency/AndroidSchedulers.java b/src/main/java/rx/android/concurrency/AndroidSchedulers.java index adcdc446..baa94e72 100644 --- a/src/main/java/rx/android/concurrency/AndroidSchedulers.java +++ b/src/main/java/rx/android/concurrency/AndroidSchedulers.java @@ -1,6 +1,4 @@ /** - * Copyright 2014 Netflix, Inc. - * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at diff --git a/src/main/java/rx/android/concurrency/HandlerThreadScheduler.java b/src/main/java/rx/android/concurrency/HandlerThreadScheduler.java index 2d9ec915..29b18f01 100644 --- a/src/main/java/rx/android/concurrency/HandlerThreadScheduler.java +++ b/src/main/java/rx/android/concurrency/HandlerThreadScheduler.java @@ -1,6 +1,4 @@ /** - * Copyright 2014 Netflix, Inc. - * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at diff --git a/src/main/java/rx/android/events/OnCheckedChangeEvent.java b/src/main/java/rx/android/events/OnCheckedChangeEvent.java index 89f99050..1377f30d 100644 --- a/src/main/java/rx/android/events/OnCheckedChangeEvent.java +++ b/src/main/java/rx/android/events/OnCheckedChangeEvent.java @@ -1,3 +1,16 @@ +/** + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package rx.android.events; import android.widget.CompoundButton; diff --git a/src/main/java/rx/android/events/OnClickEvent.java b/src/main/java/rx/android/events/OnClickEvent.java index 5f357880..bc3bc781 100644 --- a/src/main/java/rx/android/events/OnClickEvent.java +++ b/src/main/java/rx/android/events/OnClickEvent.java @@ -1,3 +1,16 @@ +/** + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package rx.android.events; import android.view.View; diff --git a/src/main/java/rx/android/events/OnItemClickEvent.java b/src/main/java/rx/android/events/OnItemClickEvent.java index 48de57a9..c2551e61 100644 --- a/src/main/java/rx/android/events/OnItemClickEvent.java +++ b/src/main/java/rx/android/events/OnItemClickEvent.java @@ -1,3 +1,16 @@ +/** + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package rx.android.events; import android.view.View; diff --git a/src/main/java/rx/android/events/OnTextChangeEvent.java b/src/main/java/rx/android/events/OnTextChangeEvent.java index ed2929fc..69b080a7 100644 --- a/src/main/java/rx/android/events/OnTextChangeEvent.java +++ b/src/main/java/rx/android/events/OnTextChangeEvent.java @@ -1,3 +1,16 @@ +/** + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package rx.android.events; import android.text.SpannableString; diff --git a/src/main/java/rx/android/observables/AndroidObservable.java b/src/main/java/rx/android/observables/AndroidObservable.java index 97c31e85..7cf776e3 100644 --- a/src/main/java/rx/android/observables/AndroidObservable.java +++ b/src/main/java/rx/android/observables/AndroidObservable.java @@ -1,6 +1,4 @@ /** - * Copyright 2014 Netflix, Inc. - * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at diff --git a/src/main/java/rx/android/observables/Assertions.java b/src/main/java/rx/android/observables/Assertions.java index 055388d7..adf7daaf 100644 --- a/src/main/java/rx/android/observables/Assertions.java +++ b/src/main/java/rx/android/observables/Assertions.java @@ -1,6 +1,4 @@ /** - * Copyright 2014 Netflix, Inc. - * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at diff --git a/src/main/java/rx/android/observables/ViewObservable.java b/src/main/java/rx/android/observables/ViewObservable.java index 4a05af05..dabe2559 100644 --- a/src/main/java/rx/android/observables/ViewObservable.java +++ b/src/main/java/rx/android/observables/ViewObservable.java @@ -1,6 +1,4 @@ /** - * Copyright 2014 Netflix, Inc. - * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at diff --git a/src/main/java/rx/android/operators/OperatorAdapterViewOnItemClick.java b/src/main/java/rx/android/operators/OperatorAdapterViewOnItemClick.java index a35bed24..70734fbd 100644 --- a/src/main/java/rx/android/operators/OperatorAdapterViewOnItemClick.java +++ b/src/main/java/rx/android/operators/OperatorAdapterViewOnItemClick.java @@ -1,6 +1,4 @@ /** - * Copyright 2014 Netflix, Inc. - * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at diff --git a/src/main/java/rx/android/operators/OperatorBroadcastRegister.java b/src/main/java/rx/android/operators/OperatorBroadcastRegister.java index 60afea62..26f8bbc3 100644 --- a/src/main/java/rx/android/operators/OperatorBroadcastRegister.java +++ b/src/main/java/rx/android/operators/OperatorBroadcastRegister.java @@ -1,6 +1,4 @@ /** - * Copyright 2014 Netflix, Inc. - * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at diff --git a/src/main/java/rx/android/operators/OperatorCompoundButtonInput.java b/src/main/java/rx/android/operators/OperatorCompoundButtonInput.java index ce0c974a..cd6dd7df 100644 --- a/src/main/java/rx/android/operators/OperatorCompoundButtonInput.java +++ b/src/main/java/rx/android/operators/OperatorCompoundButtonInput.java @@ -1,6 +1,4 @@ /** - * Copyright 2014 Netflix, Inc. - * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at diff --git a/src/main/java/rx/android/operators/OperatorConditionalBinding.java b/src/main/java/rx/android/operators/OperatorConditionalBinding.java index 0d0dffa2..9005b6c0 100644 --- a/src/main/java/rx/android/operators/OperatorConditionalBinding.java +++ b/src/main/java/rx/android/operators/OperatorConditionalBinding.java @@ -1,6 +1,4 @@ /** - * Copyright 2014 Netflix, Inc. - * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at diff --git a/src/main/java/rx/android/operators/OperatorLocalBroadcastRegister.java b/src/main/java/rx/android/operators/OperatorLocalBroadcastRegister.java index fbaa02ca..dffb7f97 100644 --- a/src/main/java/rx/android/operators/OperatorLocalBroadcastRegister.java +++ b/src/main/java/rx/android/operators/OperatorLocalBroadcastRegister.java @@ -1,6 +1,4 @@ /** - * Copyright 2014 Netflix, Inc. - * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at diff --git a/src/main/java/rx/android/operators/OperatorSharedPreferenceChange.java b/src/main/java/rx/android/operators/OperatorSharedPreferenceChange.java index ce5ec11f..8d0c83d8 100644 --- a/src/main/java/rx/android/operators/OperatorSharedPreferenceChange.java +++ b/src/main/java/rx/android/operators/OperatorSharedPreferenceChange.java @@ -1,6 +1,4 @@ /** - * Copyright 2014 Netflix, Inc. - * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at diff --git a/src/main/java/rx/android/operators/OperatorTextViewInput.java b/src/main/java/rx/android/operators/OperatorTextViewInput.java index 870de23c..759136cd 100644 --- a/src/main/java/rx/android/operators/OperatorTextViewInput.java +++ b/src/main/java/rx/android/operators/OperatorTextViewInput.java @@ -1,6 +1,4 @@ /** - * Copyright 2014 Netflix, Inc. - * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at diff --git a/src/main/java/rx/android/operators/OperatorViewClick.java b/src/main/java/rx/android/operators/OperatorViewClick.java index f95d49b1..24b7dc69 100644 --- a/src/main/java/rx/android/operators/OperatorViewClick.java +++ b/src/main/java/rx/android/operators/OperatorViewClick.java @@ -1,6 +1,4 @@ /** - * Copyright 2014 Netflix, Inc. - * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at diff --git a/src/main/java/rx/android/schedulers/AndroidSchedulers.java b/src/main/java/rx/android/schedulers/AndroidSchedulers.java index 3e807ab5..3707b519 100644 --- a/src/main/java/rx/android/schedulers/AndroidSchedulers.java +++ b/src/main/java/rx/android/schedulers/AndroidSchedulers.java @@ -1,6 +1,4 @@ /** - * Copyright 2014 Netflix, Inc. - * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at diff --git a/src/main/java/rx/android/schedulers/HandlerThreadScheduler.java b/src/main/java/rx/android/schedulers/HandlerThreadScheduler.java index 4e580870..b8af7ab9 100644 --- a/src/main/java/rx/android/schedulers/HandlerThreadScheduler.java +++ b/src/main/java/rx/android/schedulers/HandlerThreadScheduler.java @@ -1,6 +1,4 @@ /** - * Copyright 2014 Netflix, Inc. - * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at diff --git a/src/main/java/rx/android/subscriptions/AndroidSubscriptions.java b/src/main/java/rx/android/subscriptions/AndroidSubscriptions.java index 403d0d79..5b384622 100644 --- a/src/main/java/rx/android/subscriptions/AndroidSubscriptions.java +++ b/src/main/java/rx/android/subscriptions/AndroidSubscriptions.java @@ -1,6 +1,4 @@ /** - * Copyright 2014 Netflix, Inc. - * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at diff --git a/src/test/java/rx/android/observables/AndroidObservableTest.java b/src/test/java/rx/android/observables/AndroidObservableTest.java index 166ee0f3..d43a3d38 100644 --- a/src/test/java/rx/android/observables/AndroidObservableTest.java +++ b/src/test/java/rx/android/observables/AndroidObservableTest.java @@ -1,6 +1,4 @@ /** - * Copyright 2014 Netflix, Inc. - * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at diff --git a/src/test/java/rx/android/operators/OperatorAdapterViewOnItemClickTest.java b/src/test/java/rx/android/operators/OperatorAdapterViewOnItemClickTest.java index 1f7707ff..0eb6eff6 100644 --- a/src/test/java/rx/android/operators/OperatorAdapterViewOnItemClickTest.java +++ b/src/test/java/rx/android/operators/OperatorAdapterViewOnItemClickTest.java @@ -1,6 +1,4 @@ /** - * Copyright 2014 Netflix, Inc. - * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at diff --git a/src/test/java/rx/android/operators/OperatorBroadcastRegisterTest.java b/src/test/java/rx/android/operators/OperatorBroadcastRegisterTest.java index 28e6c803..139fa951 100644 --- a/src/test/java/rx/android/operators/OperatorBroadcastRegisterTest.java +++ b/src/test/java/rx/android/operators/OperatorBroadcastRegisterTest.java @@ -1,6 +1,4 @@ /** - * Copyright 2014 Netflix, Inc. - * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at diff --git a/src/test/java/rx/android/operators/OperatorCompoundButtonInputTest.java b/src/test/java/rx/android/operators/OperatorCompoundButtonInputTest.java index 8129580e..795949d1 100644 --- a/src/test/java/rx/android/operators/OperatorCompoundButtonInputTest.java +++ b/src/test/java/rx/android/operators/OperatorCompoundButtonInputTest.java @@ -1,6 +1,4 @@ /** - * Copyright 2014 Netflix, Inc. - * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at diff --git a/src/test/java/rx/android/operators/OperatorConditionalBindingTest.java b/src/test/java/rx/android/operators/OperatorConditionalBindingTest.java index 6cf4500f..fb8efd57 100644 --- a/src/test/java/rx/android/operators/OperatorConditionalBindingTest.java +++ b/src/test/java/rx/android/operators/OperatorConditionalBindingTest.java @@ -1,6 +1,4 @@ /** - * Copyright 2014 Netflix, Inc. - * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at diff --git a/src/test/java/rx/android/operators/OperatorLocalBroadcastRegisterTest.java b/src/test/java/rx/android/operators/OperatorLocalBroadcastRegisterTest.java index f0224430..5b39b67d 100644 --- a/src/test/java/rx/android/operators/OperatorLocalBroadcastRegisterTest.java +++ b/src/test/java/rx/android/operators/OperatorLocalBroadcastRegisterTest.java @@ -1,6 +1,4 @@ /** - * Copyright 2014 Netflix, Inc. - * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at diff --git a/src/test/java/rx/android/operators/OperatorSharedPreferencesChangeTest.java b/src/test/java/rx/android/operators/OperatorSharedPreferencesChangeTest.java index 78b53e7d..eea97169 100644 --- a/src/test/java/rx/android/operators/OperatorSharedPreferencesChangeTest.java +++ b/src/test/java/rx/android/operators/OperatorSharedPreferencesChangeTest.java @@ -1,6 +1,4 @@ /** - * Copyright 2014 Netflix, Inc. - * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at diff --git a/src/test/java/rx/android/operators/OperatorTextViewInputTest.java b/src/test/java/rx/android/operators/OperatorTextViewInputTest.java index ac0df696..ef3b894f 100644 --- a/src/test/java/rx/android/operators/OperatorTextViewInputTest.java +++ b/src/test/java/rx/android/operators/OperatorTextViewInputTest.java @@ -1,6 +1,4 @@ /** - * Copyright 2014 Netflix, Inc. - * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at diff --git a/src/test/java/rx/android/operators/OperatorViewClickTest.java b/src/test/java/rx/android/operators/OperatorViewClickTest.java index b43bd5f6..b7373296 100644 --- a/src/test/java/rx/android/operators/OperatorViewClickTest.java +++ b/src/test/java/rx/android/operators/OperatorViewClickTest.java @@ -1,6 +1,4 @@ /** - * Copyright 2014 Netflix, Inc. - * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at diff --git a/src/test/java/rx/android/schedulers/HandlerThreadSchedulerTest.java b/src/test/java/rx/android/schedulers/HandlerThreadSchedulerTest.java index e370f0a9..2b0fe428 100644 --- a/src/test/java/rx/android/schedulers/HandlerThreadSchedulerTest.java +++ b/src/test/java/rx/android/schedulers/HandlerThreadSchedulerTest.java @@ -1,6 +1,4 @@ /** - * Copyright 2014 Netflix, Inc. - * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at