aboutsummaryrefslogtreecommitdiff
path: root/context
diff options
context:
space:
mode:
authorCarl Mastrangelo <notcarl@google.com>2018-05-03 14:55:21 -0700
committerGitHub <noreply@github.com>2018-05-03 14:55:21 -0700
commit60a0b0c471d720b0546ee3a5b4fa4283635dfbcf (patch)
tree1409d62af1373bd59e644eb8e0eee825cb45c4a3 /context
parent894c8158323c8fd30e0e163c19f3a39e0244c9be (diff)
downloadgrpc-grpc-java-60a0b0c471d720b0546ee3a5b4fa4283635dfbcf.tar.gz
all: normalize copyright header
Diffstat (limited to 'context')
-rw-r--r--context/src/jmh/java/io/grpc/AttachDetachBenchmark.java2
-rw-r--r--context/src/jmh/java/io/grpc/ReadBenchmark.java2
-rw-r--r--context/src/jmh/java/io/grpc/WriteBenchmark.java2
-rw-r--r--context/src/main/java/io/grpc/Context.java2
-rw-r--r--context/src/main/java/io/grpc/Deadline.java2
-rw-r--r--context/src/main/java/io/grpc/PersistentHashArrayMappedTrie.java2
-rw-r--r--context/src/main/java/io/grpc/ThreadLocalContextStorage.java2
-rw-r--r--context/src/test/java/io/grpc/ContextTest.java2
-rw-r--r--context/src/test/java/io/grpc/DeadlineTest.java2
-rw-r--r--context/src/test/java/io/grpc/PersistentHashArrayMappedTrieTest.java2
-rw-r--r--context/src/test/java/io/grpc/StaticTestingClassLoader.java2
-rw-r--r--context/src/test/java/io/grpc/testing/DeadlineSubject.java2
12 files changed, 12 insertions, 12 deletions
diff --git a/context/src/jmh/java/io/grpc/AttachDetachBenchmark.java b/context/src/jmh/java/io/grpc/AttachDetachBenchmark.java
index 52f0245c7..8a9321e96 100644
--- a/context/src/jmh/java/io/grpc/AttachDetachBenchmark.java
+++ b/context/src/jmh/java/io/grpc/AttachDetachBenchmark.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016, gRPC Authors All rights reserved.
+ * Copyright 2016 The gRPC Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/context/src/jmh/java/io/grpc/ReadBenchmark.java b/context/src/jmh/java/io/grpc/ReadBenchmark.java
index a789ed898..237aa6f8e 100644
--- a/context/src/jmh/java/io/grpc/ReadBenchmark.java
+++ b/context/src/jmh/java/io/grpc/ReadBenchmark.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2017, gRPC Authors All rights reserved.
+ * Copyright 2017 The gRPC Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/context/src/jmh/java/io/grpc/WriteBenchmark.java b/context/src/jmh/java/io/grpc/WriteBenchmark.java
index f081900e9..d4c27053e 100644
--- a/context/src/jmh/java/io/grpc/WriteBenchmark.java
+++ b/context/src/jmh/java/io/grpc/WriteBenchmark.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2017, gRPC Authors All rights reserved.
+ * Copyright 2017 The gRPC Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/context/src/main/java/io/grpc/Context.java b/context/src/main/java/io/grpc/Context.java
index 600d0c25a..795eb4ec3 100644
--- a/context/src/main/java/io/grpc/Context.java
+++ b/context/src/main/java/io/grpc/Context.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2015, gRPC Authors All rights reserved.
+ * Copyright 2015 The gRPC Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/context/src/main/java/io/grpc/Deadline.java b/context/src/main/java/io/grpc/Deadline.java
index 07e20e18f..1152ee32b 100644
--- a/context/src/main/java/io/grpc/Deadline.java
+++ b/context/src/main/java/io/grpc/Deadline.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016, gRPC Authors All rights reserved.
+ * Copyright 2016 The gRPC Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/context/src/main/java/io/grpc/PersistentHashArrayMappedTrie.java b/context/src/main/java/io/grpc/PersistentHashArrayMappedTrie.java
index 4f2d85bfe..8c5b05323 100644
--- a/context/src/main/java/io/grpc/PersistentHashArrayMappedTrie.java
+++ b/context/src/main/java/io/grpc/PersistentHashArrayMappedTrie.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2017, gRPC Authors All rights reserved.
+ * Copyright 2017 The gRPC Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/context/src/main/java/io/grpc/ThreadLocalContextStorage.java b/context/src/main/java/io/grpc/ThreadLocalContextStorage.java
index 7c49d5ff7..ab734e292 100644
--- a/context/src/main/java/io/grpc/ThreadLocalContextStorage.java
+++ b/context/src/main/java/io/grpc/ThreadLocalContextStorage.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016, gRPC Authors All rights reserved.
+ * Copyright 2016 The gRPC Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/context/src/test/java/io/grpc/ContextTest.java b/context/src/test/java/io/grpc/ContextTest.java
index 4f8e082ab..ab0130bf7 100644
--- a/context/src/test/java/io/grpc/ContextTest.java
+++ b/context/src/test/java/io/grpc/ContextTest.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2015, gRPC Authors All rights reserved.
+ * Copyright 2015 The gRPC Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/context/src/test/java/io/grpc/DeadlineTest.java b/context/src/test/java/io/grpc/DeadlineTest.java
index d740dc41c..548ebe59c 100644
--- a/context/src/test/java/io/grpc/DeadlineTest.java
+++ b/context/src/test/java/io/grpc/DeadlineTest.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016, gRPC Authors All rights reserved.
+ * Copyright 2016 The gRPC Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/context/src/test/java/io/grpc/PersistentHashArrayMappedTrieTest.java b/context/src/test/java/io/grpc/PersistentHashArrayMappedTrieTest.java
index 863441a1b..c91800541 100644
--- a/context/src/test/java/io/grpc/PersistentHashArrayMappedTrieTest.java
+++ b/context/src/test/java/io/grpc/PersistentHashArrayMappedTrieTest.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2017, gRPC Authors All rights reserved.
+ * Copyright 2017 The gRPC Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/context/src/test/java/io/grpc/StaticTestingClassLoader.java b/context/src/test/java/io/grpc/StaticTestingClassLoader.java
index 590a7c0da..716a887e8 100644
--- a/context/src/test/java/io/grpc/StaticTestingClassLoader.java
+++ b/context/src/test/java/io/grpc/StaticTestingClassLoader.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2017, gRPC Authors All rights reserved.
+ * Copyright 2017 The gRPC Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/context/src/test/java/io/grpc/testing/DeadlineSubject.java b/context/src/test/java/io/grpc/testing/DeadlineSubject.java
index 11ce98433..41c1061b9 100644
--- a/context/src/test/java/io/grpc/testing/DeadlineSubject.java
+++ b/context/src/test/java/io/grpc/testing/DeadlineSubject.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2016, gRPC Authors All rights reserved.
+ * Copyright 2016 The gRPC Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.