diff --git a/store/src/main/java/com/dropbox/android/external/store4/StoreBuilder.kt b/store/src/main/java/com/dropbox/android/external/store4/StoreBuilder.kt index 7f54ce3af..027fbe063 100644 --- a/store/src/main/java/com/dropbox/android/external/store4/StoreBuilder.kt +++ b/store/src/main/java/com/dropbox/android/external/store4/StoreBuilder.kt @@ -1,3 +1,18 @@ +/* + * Copyright 2019 Google LLC + * + * 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 + * + * https://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 com.dropbox.android.external.store4 import com.dropbox.android.external.store4.impl.PersistentNonFlowingSourceOfTruth diff --git a/store/src/main/java/com/dropbox/android/external/store4/StoreRequest.kt b/store/src/main/java/com/dropbox/android/external/store4/StoreRequest.kt index eff341565..3952cd459 100644 --- a/store/src/main/java/com/dropbox/android/external/store4/StoreRequest.kt +++ b/store/src/main/java/com/dropbox/android/external/store4/StoreRequest.kt @@ -1,3 +1,18 @@ +/* + * Copyright 2019 Google LLC + * + * 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 + * + * https://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 com.dropbox.android.external.store4 data class StoreRequest private constructor( diff --git a/store/src/main/java/com/dropbox/android/external/store4/StoreResponse.kt b/store/src/main/java/com/dropbox/android/external/store4/StoreResponse.kt index 24520fc33..547c63a5b 100644 --- a/store/src/main/java/com/dropbox/android/external/store4/StoreResponse.kt +++ b/store/src/main/java/com/dropbox/android/external/store4/StoreResponse.kt @@ -1,3 +1,18 @@ +/* + * Copyright 2019 Google LLC + * + * 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 + * + * https://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 com.dropbox.android.external.store4 /** diff --git a/store/src/main/java/com/dropbox/android/external/store4/impl/FetcherController.kt b/store/src/main/java/com/dropbox/android/external/store4/impl/FetcherController.kt index 84a6d76a9..94365590e 100644 --- a/store/src/main/java/com/dropbox/android/external/store4/impl/FetcherController.kt +++ b/store/src/main/java/com/dropbox/android/external/store4/impl/FetcherController.kt @@ -1,3 +1,18 @@ +/* + * Copyright 2019 Google LLC + * + * 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 + * + * https://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 com.dropbox.android.external.store4.impl import com.dropbox.android.external.store4.ResponseOrigin diff --git a/store/src/main/java/com/dropbox/android/external/store4/impl/RealStore.kt b/store/src/main/java/com/dropbox/android/external/store4/impl/RealStore.kt index 3cffcf9f8..4ca8cb05a 100644 --- a/store/src/main/java/com/dropbox/android/external/store4/impl/RealStore.kt +++ b/store/src/main/java/com/dropbox/android/external/store4/impl/RealStore.kt @@ -1,3 +1,18 @@ +/* + * Copyright 2019 Google LLC + * + * 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 + * + * https://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 com.dropbox.android.external.store4.impl import com.dropbox.android.external.cache3.CacheBuilder diff --git a/store/src/main/java/com/dropbox/android/external/store4/impl/RefCountedResource.kt b/store/src/main/java/com/dropbox/android/external/store4/impl/RefCountedResource.kt index 437a8f06b..02c576690 100644 --- a/store/src/main/java/com/dropbox/android/external/store4/impl/RefCountedResource.kt +++ b/store/src/main/java/com/dropbox/android/external/store4/impl/RefCountedResource.kt @@ -1,3 +1,18 @@ +/* + * Copyright 2019 Google LLC + * + * 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 + * + * https://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 com.dropbox.android.external.store4.impl import kotlinx.coroutines.sync.Mutex diff --git a/store/src/main/java/com/dropbox/android/external/store4/impl/SourceOfTruth.kt b/store/src/main/java/com/dropbox/android/external/store4/impl/SourceOfTruth.kt index 791df708d..f22045653 100644 --- a/store/src/main/java/com/dropbox/android/external/store4/impl/SourceOfTruth.kt +++ b/store/src/main/java/com/dropbox/android/external/store4/impl/SourceOfTruth.kt @@ -1,3 +1,18 @@ +/* + * Copyright 2019 Google LLC + * + * 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 + * + * https://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 com.dropbox.android.external.store4.impl import com.dropbox.android.external.store4.ResponseOrigin diff --git a/store/src/main/java/com/dropbox/android/external/store4/impl/SourceOfTruthWithBarrier.kt b/store/src/main/java/com/dropbox/android/external/store4/impl/SourceOfTruthWithBarrier.kt index e0c8d5e94..8be1814d3 100644 --- a/store/src/main/java/com/dropbox/android/external/store4/impl/SourceOfTruthWithBarrier.kt +++ b/store/src/main/java/com/dropbox/android/external/store4/impl/SourceOfTruthWithBarrier.kt @@ -1,3 +1,18 @@ +/* + * Copyright 2019 Google LLC + * + * 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 + * + * https://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 com.dropbox.android.external.store4.impl import com.dropbox.android.external.store4.ResponseOrigin diff --git a/store/src/main/java/com/dropbox/android/external/store4/impl/multicast/ChannelManager.kt b/store/src/main/java/com/dropbox/android/external/store4/impl/multicast/ChannelManager.kt index c6d70cc7c..72fcd01ce 100644 --- a/store/src/main/java/com/dropbox/android/external/store4/impl/multicast/ChannelManager.kt +++ b/store/src/main/java/com/dropbox/android/external/store4/impl/multicast/ChannelManager.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2019 Google LLC + * + * 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 + * + * https://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 com.dropbox.android.external.store4.impl.multicast import kotlinx.coroutines.CompletableDeferred diff --git a/store/src/main/java/com/dropbox/android/external/store4/impl/multicast/Multicaster.kt b/store/src/main/java/com/dropbox/android/external/store4/impl/multicast/Multicaster.kt index 2246fb78e..400b0d386 100644 --- a/store/src/main/java/com/dropbox/android/external/store4/impl/multicast/Multicaster.kt +++ b/store/src/main/java/com/dropbox/android/external/store4/impl/multicast/Multicaster.kt @@ -1,3 +1,19 @@ +/* + * Copyright 2019 Google LLC + * + * 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 + * + * https://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 com.dropbox.android.external.store4.impl.multicast import kotlinx.coroutines.CoroutineScope diff --git a/store/src/main/java/com/dropbox/android/external/store4/impl/multicast/SharedFlowProducer.kt b/store/src/main/java/com/dropbox/android/external/store4/impl/multicast/SharedFlowProducer.kt index 4dd4b106a..596acdc72 100644 --- a/store/src/main/java/com/dropbox/android/external/store4/impl/multicast/SharedFlowProducer.kt +++ b/store/src/main/java/com/dropbox/android/external/store4/impl/multicast/SharedFlowProducer.kt @@ -1,3 +1,18 @@ +/* + * Copyright 2019 Google LLC + * + * 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 + * + * https://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 com.dropbox.android.external.store4.impl.multicast import com.dropbox.android.external.store4.impl.multicast.ChannelManager.Message.DispatchError diff --git a/store/src/main/java/com/dropbox/android/external/store4/impl/multicast/StoreRealActor.kt b/store/src/main/java/com/dropbox/android/external/store4/impl/multicast/StoreRealActor.kt index 4444880d6..80f369cf6 100644 --- a/store/src/main/java/com/dropbox/android/external/store4/impl/multicast/StoreRealActor.kt +++ b/store/src/main/java/com/dropbox/android/external/store4/impl/multicast/StoreRealActor.kt @@ -1,3 +1,18 @@ +/* + * Copyright 2019 Google LLC + * + * 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 + * + * https://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 com.dropbox.android.external.store4.impl.multicast import kotlinx.coroutines.CompletableDeferred diff --git a/store/src/main/java/com/dropbox/android/external/store4/impl/operators/FlowMerge.kt b/store/src/main/java/com/dropbox/android/external/store4/impl/operators/FlowMerge.kt index b5d23693a..38a31f1ac 100644 --- a/store/src/main/java/com/dropbox/android/external/store4/impl/operators/FlowMerge.kt +++ b/store/src/main/java/com/dropbox/android/external/store4/impl/operators/FlowMerge.kt @@ -1,3 +1,18 @@ +/* + * Copyright 2019 Google LLC + * + * 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 + * + * https://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 com.dropbox.android.external.store4.impl.operators import kotlinx.coroutines.ExperimentalCoroutinesApi diff --git a/store/src/main/java/com/dropbox/android/external/store4/impl/operators/MapIndexed.kt b/store/src/main/java/com/dropbox/android/external/store4/impl/operators/MapIndexed.kt index e8652693e..32f4c8e63 100644 --- a/store/src/main/java/com/dropbox/android/external/store4/impl/operators/MapIndexed.kt +++ b/store/src/main/java/com/dropbox/android/external/store4/impl/operators/MapIndexed.kt @@ -1,3 +1,18 @@ +/* + * Copyright 2019 Google LLC + * + * 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 + * + * https://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 com.dropbox.android.external.store4.impl.operators import kotlinx.coroutines.ExperimentalCoroutinesApi diff --git a/store/src/test/java/com/dropbox/android/external/store3/TestStoreBuilder.kt b/store/src/test/java/com/dropbox/android/external/store3/TestStoreBuilder.kt index 8a2103bf6..1f7b1d193 100644 --- a/store/src/test/java/com/dropbox/android/external/store3/TestStoreBuilder.kt +++ b/store/src/test/java/com/dropbox/android/external/store3/TestStoreBuilder.kt @@ -1,3 +1,18 @@ +/* + * Copyright 2019 Google LLC + * + * 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 + * + * https://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 com.dropbox.android.external.store3 import com.dropbox.android.external.store3.util.KeyParser diff --git a/store/src/test/java/com/dropbox/android/external/store4/FetcherControllerTest.kt b/store/src/test/java/com/dropbox/android/external/store4/FetcherControllerTest.kt index 696a1a15d..899bb13f0 100644 --- a/store/src/test/java/com/dropbox/android/external/store4/FetcherControllerTest.kt +++ b/store/src/test/java/com/dropbox/android/external/store4/FetcherControllerTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright 2019 Google LLC + * + * 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 + * + * https://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 com.dropbox.android.external.store4 import com.dropbox.android.external.store4.ResponseOrigin.Fetcher diff --git a/store/src/test/java/com/dropbox/android/external/store4/SourceOfTruthWithBarrierTest.kt b/store/src/test/java/com/dropbox/android/external/store4/SourceOfTruthWithBarrierTest.kt index 6abb92411..654280e66 100644 --- a/store/src/test/java/com/dropbox/android/external/store4/SourceOfTruthWithBarrierTest.kt +++ b/store/src/test/java/com/dropbox/android/external/store4/SourceOfTruthWithBarrierTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright 2019 Google LLC + * + * 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 + * + * https://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 com.dropbox.android.external.store4 import com.dropbox.android.external.store4.impl.FlowStoreTest diff --git a/store/src/test/java/com/dropbox/android/external/store4/impl/FakeFetcher.kt b/store/src/test/java/com/dropbox/android/external/store4/impl/FakeFetcher.kt index 5f9a42f73..ec7e04763 100644 --- a/store/src/test/java/com/dropbox/android/external/store4/impl/FakeFetcher.kt +++ b/store/src/test/java/com/dropbox/android/external/store4/impl/FakeFetcher.kt @@ -1,3 +1,18 @@ +/* + * Copyright 2019 Google LLC + * + * 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 + * + * https://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 com.dropbox.android.external.store4.impl import org.assertj.core.api.Assertions diff --git a/store/src/test/java/com/dropbox/android/external/store4/impl/FlowStoreTest.kt b/store/src/test/java/com/dropbox/android/external/store4/impl/FlowStoreTest.kt index c566a930c..7084feea8 100644 --- a/store/src/test/java/com/dropbox/android/external/store4/impl/FlowStoreTest.kt +++ b/store/src/test/java/com/dropbox/android/external/store4/impl/FlowStoreTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright 2019 Google LLC + * + * 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 + * + * https://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 com.dropbox.android.external.store4.impl import com.dropbox.android.external.store4.* diff --git a/store/src/test/java/com/dropbox/android/external/store4/impl/FlowTestExt.kt b/store/src/test/java/com/dropbox/android/external/store4/impl/FlowTestExt.kt index 06ce699c3..ea8473047 100644 --- a/store/src/test/java/com/dropbox/android/external/store4/impl/FlowTestExt.kt +++ b/store/src/test/java/com/dropbox/android/external/store4/impl/FlowTestExt.kt @@ -1,3 +1,18 @@ +/* + * Copyright 2019 Google LLC + * + * 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 + * + * https://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 com.dropbox.android.external.store4.impl import kotlinx.coroutines.flow.Flow diff --git a/store/src/test/java/com/dropbox/android/external/store4/impl/KeyTrackerTest.kt b/store/src/test/java/com/dropbox/android/external/store4/impl/KeyTrackerTest.kt index a3f681f26..a607af08d 100644 --- a/store/src/test/java/com/dropbox/android/external/store4/impl/KeyTrackerTest.kt +++ b/store/src/test/java/com/dropbox/android/external/store4/impl/KeyTrackerTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright 2019 Google LLC + * + * 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 + * + * https://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 com.dropbox.android.external.store4.impl import kotlinx.coroutines.ExperimentalCoroutinesApi diff --git a/store/src/test/java/com/dropbox/android/external/store4/impl/SimplePersisterAsFlowable.kt b/store/src/test/java/com/dropbox/android/external/store4/impl/SimplePersisterAsFlowable.kt index 4c4ac24ca..b06bbe964 100644 --- a/store/src/test/java/com/dropbox/android/external/store4/impl/SimplePersisterAsFlowable.kt +++ b/store/src/test/java/com/dropbox/android/external/store4/impl/SimplePersisterAsFlowable.kt @@ -1,3 +1,18 @@ +/* + * Copyright 2019 Google LLC + * + * 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 + * + * https://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 com.dropbox.android.external.store4.impl import kotlinx.coroutines.ExperimentalCoroutinesApi diff --git a/store/src/test/java/com/dropbox/android/external/store4/impl/SimplePersisterAsFlowableTest.kt b/store/src/test/java/com/dropbox/android/external/store4/impl/SimplePersisterAsFlowableTest.kt index 476ec22ae..159c90625 100644 --- a/store/src/test/java/com/dropbox/android/external/store4/impl/SimplePersisterAsFlowableTest.kt +++ b/store/src/test/java/com/dropbox/android/external/store4/impl/SimplePersisterAsFlowableTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright 2019 Google LLC + * + * 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 + * + * https://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 com.dropbox.android.external.store4.impl import com.dropbox.android.external.store4.legacy.BarCode diff --git a/store/src/test/java/com/dropbox/android/external/store4/impl/StreamWithoutSourceOfTruthTest.kt b/store/src/test/java/com/dropbox/android/external/store4/impl/StreamWithoutSourceOfTruthTest.kt index c01ad2267..c21eb7a29 100644 --- a/store/src/test/java/com/dropbox/android/external/store4/impl/StreamWithoutSourceOfTruthTest.kt +++ b/store/src/test/java/com/dropbox/android/external/store4/impl/StreamWithoutSourceOfTruthTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright 2019 Google LLC + * + * 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 + * + * https://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 com.dropbox.android.external.store4.impl import com.dropbox.android.external.store4.ResponseOrigin diff --git a/store/src/test/java/com/dropbox/android/external/store4/impl/multicast/ChannelManagerTest.kt b/store/src/test/java/com/dropbox/android/external/store4/impl/multicast/ChannelManagerTest.kt index 84ac2670a..458478247 100644 --- a/store/src/test/java/com/dropbox/android/external/store4/impl/multicast/ChannelManagerTest.kt +++ b/store/src/test/java/com/dropbox/android/external/store4/impl/multicast/ChannelManagerTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright 2019 Google LLC + * + * 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 + * + * https://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 com.dropbox.android.external.store4.impl.multicast import com.dropbox.android.external.store4.impl.multicast.ChannelManager.Message.AddChannel diff --git a/store/src/test/java/com/dropbox/android/external/store4/impl/multicast/InfiniteMulticastTest.kt b/store/src/test/java/com/dropbox/android/external/store4/impl/multicast/InfiniteMulticastTest.kt index 0c9923cec..25538db88 100644 --- a/store/src/test/java/com/dropbox/android/external/store4/impl/multicast/InfiniteMulticastTest.kt +++ b/store/src/test/java/com/dropbox/android/external/store4/impl/multicast/InfiniteMulticastTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright 2019 Google LLC + * + * 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 + * + * https://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 com.dropbox.android.external.store4.impl.multicast import kotlinx.coroutines.ExperimentalCoroutinesApi diff --git a/store/src/test/java/com/dropbox/android/external/store4/impl/multicast/MulticastTest.kt b/store/src/test/java/com/dropbox/android/external/store4/impl/multicast/MulticastTest.kt index 2dbf7fa6e..a1871d3b2 100644 --- a/store/src/test/java/com/dropbox/android/external/store4/impl/multicast/MulticastTest.kt +++ b/store/src/test/java/com/dropbox/android/external/store4/impl/multicast/MulticastTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright 2019 Google LLC + * + * 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 + * + * https://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 com.dropbox.android.external.store4.impl.multicast import kotlinx.coroutines.CompletableDeferred diff --git a/store/src/test/java/com/dropbox/android/external/store4/impl/multicast/StoreRealActorTest.kt b/store/src/test/java/com/dropbox/android/external/store4/impl/multicast/StoreRealActorTest.kt index 8078e9f4f..8430b317a 100644 --- a/store/src/test/java/com/dropbox/android/external/store4/impl/multicast/StoreRealActorTest.kt +++ b/store/src/test/java/com/dropbox/android/external/store4/impl/multicast/StoreRealActorTest.kt @@ -1,3 +1,18 @@ +/* + * Copyright 2019 Google LLC + * + * 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 + * + * https://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 com.dropbox.android.external.store4.impl.multicast import kotlinx.coroutines.CompletableDeferred