aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--AUTHORS1
-rw-r--r--CONTRIBUTORS1
-rw-r--r--third_party/ijar/classfile.cc4
-rw-r--r--third_party/ijar/common.h4
-rw-r--r--third_party/ijar/ijar.cc4
-rw-r--r--third_party/ijar/test/A.java2
-rw-r--r--third_party/ijar/test/AnnotatedClass.java2
-rw-r--r--third_party/ijar/test/Annotations.java2
-rw-r--r--third_party/ijar/test/B.java2
-rw-r--r--third_party/ijar/test/DeprecatedParts.java2
-rw-r--r--third_party/ijar/test/DumbClass.java2
-rw-r--r--third_party/ijar/test/EnclosingMethod.java2
-rw-r--r--third_party/ijar/test/GenSourceDebugExtension.java2
-rw-r--r--third_party/ijar/test/IjarTests.java2
-rw-r--r--third_party/ijar/test/Object.java2
-rw-r--r--third_party/ijar/test/PrivateMembersClass.java2
-rw-r--r--third_party/ijar/test/PrivateNestedClass.java2
-rw-r--r--third_party/ijar/test/StripVerifyingVisitor.java2
-rw-r--r--third_party/ijar/test/TypeAnnotationTest2.java2
-rw-r--r--third_party/ijar/test/UseDeprecatedParts.java2
-rw-r--r--third_party/ijar/test/UseRestrictedAnnotation.java2
-rw-r--r--third_party/ijar/test/WellCompressed1.java2
-rw-r--r--third_party/ijar/test/WellCompressed2.java2
-rw-r--r--third_party/ijar/test/invokedynamic/ClassWithLambda.java2
-rw-r--r--third_party/ijar/test/package-info.java2
-rw-r--r--third_party/ijar/test/typeannotations2/NonNull.java2
-rw-r--r--third_party/ijar/test/typeannotations2/Nullable.java2
-rw-r--r--third_party/ijar/test/typeannotations2/Util.java2
-rw-r--r--third_party/ijar/test/typeannotations2/java/lang/annotation/ElementType.java2
-rwxr-xr-xthird_party/ijar/test/zip_test.sh2
-rw-r--r--third_party/ijar/zip.cc4
-rw-r--r--third_party/ijar/zip.h2
-rw-r--r--third_party/ijar/zip_main.cc4
33 files changed, 33 insertions, 41 deletions
diff --git a/AUTHORS b/AUTHORS
index a7ff8abfd7..b92f3c1546 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -11,6 +11,7 @@ Anthony Bellissimo <twon33@gmail.com>
Volker Braun <vbraun.name@gmail.com>
Thomas Broyer <t.broyer@ltgt.net>
Steven Dee <steven@choosemuse.com>
+Alan Donovan <adonovan@google.com>
Thiago Farina <tfarina@chromium.org>
Peter Foley <pefoley2@pefoley.com>
Roland Huß <roland@jolokia.org>
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index e9e34b22fd..6e735c61a6 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -26,6 +26,7 @@ Onath Claridge <claridge@google.com>
Laszlo Csomor <laszlocsomor@google.com>
Steven Dee <steven@choosemuse.com>
Matthew DeVore <matvore@google.com>
+Alan Donovan <adonovan@google.com>
Dave Dopson <ddopson@google.com>
Rumou Duan <rduan@google.com>
Greg Estren <gregce@google.com>
diff --git a/third_party/ijar/classfile.cc b/third_party/ijar/classfile.cc
index 7e7b46b5c2..09c03cfeeb 100644
--- a/third_party/ijar/classfile.cc
+++ b/third_party/ijar/classfile.cc
@@ -1,6 +1,4 @@
-// Copyright 2007 The Bazel Authors..
-//
-// Author: Alan Donovan <adonovan@google.com>
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// 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/third_party/ijar/common.h b/third_party/ijar/common.h
index 118041b852..f7df14bb75 100644
--- a/third_party/ijar/common.h
+++ b/third_party/ijar/common.h
@@ -1,6 +1,4 @@
-// Copyright 2001,2007 Alan Donovan. All rights reserved.
-//
-// Author: Alan Donovan <adonovan@google.com>
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// 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/third_party/ijar/ijar.cc b/third_party/ijar/ijar.cc
index 860b551f66..f6888d4853 100644
--- a/third_party/ijar/ijar.cc
+++ b/third_party/ijar/ijar.cc
@@ -1,6 +1,4 @@
-// Copyright 2001,2007 Alan Donovan. All rights reserved.
-//
-// Author: Alan Donovan <adonovan@google.com>
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// 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/third_party/ijar/test/A.java b/third_party/ijar/test/A.java
index 45c6b8fe13..568e258083 100644
--- a/third_party/ijar/test/A.java
+++ b/third_party/ijar/test/A.java
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// 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/third_party/ijar/test/AnnotatedClass.java b/third_party/ijar/test/AnnotatedClass.java
index 2a1535708c..f8eaea7529 100644
--- a/third_party/ijar/test/AnnotatedClass.java
+++ b/third_party/ijar/test/AnnotatedClass.java
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// 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/third_party/ijar/test/Annotations.java b/third_party/ijar/test/Annotations.java
index a4fff58fc7..7c7ae71e7c 100644
--- a/third_party/ijar/test/Annotations.java
+++ b/third_party/ijar/test/Annotations.java
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// 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/third_party/ijar/test/B.java b/third_party/ijar/test/B.java
index c1a946016f..3283c488b2 100644
--- a/third_party/ijar/test/B.java
+++ b/third_party/ijar/test/B.java
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// 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/third_party/ijar/test/DeprecatedParts.java b/third_party/ijar/test/DeprecatedParts.java
index 1cbed27835..2a118f2fb3 100644
--- a/third_party/ijar/test/DeprecatedParts.java
+++ b/third_party/ijar/test/DeprecatedParts.java
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// 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/third_party/ijar/test/DumbClass.java b/third_party/ijar/test/DumbClass.java
index 4b685f943d..e267c7b366 100644
--- a/third_party/ijar/test/DumbClass.java
+++ b/third_party/ijar/test/DumbClass.java
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// 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/third_party/ijar/test/EnclosingMethod.java b/third_party/ijar/test/EnclosingMethod.java
index 1684d7a3bf..6cb8ce27a8 100644
--- a/third_party/ijar/test/EnclosingMethod.java
+++ b/third_party/ijar/test/EnclosingMethod.java
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// 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/third_party/ijar/test/GenSourceDebugExtension.java b/third_party/ijar/test/GenSourceDebugExtension.java
index 055c3eb78d..f5f66bf151 100644
--- a/third_party/ijar/test/GenSourceDebugExtension.java
+++ b/third_party/ijar/test/GenSourceDebugExtension.java
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// 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/third_party/ijar/test/IjarTests.java b/third_party/ijar/test/IjarTests.java
index 0448b33b71..18e94f2145 100644
--- a/third_party/ijar/test/IjarTests.java
+++ b/third_party/ijar/test/IjarTests.java
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// 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/third_party/ijar/test/Object.java b/third_party/ijar/test/Object.java
index 93b508886a..4ba302d420 100644
--- a/third_party/ijar/test/Object.java
+++ b/third_party/ijar/test/Object.java
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// 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/third_party/ijar/test/PrivateMembersClass.java b/third_party/ijar/test/PrivateMembersClass.java
index 0f4ecaf71d..aa72b8ec16 100644
--- a/third_party/ijar/test/PrivateMembersClass.java
+++ b/third_party/ijar/test/PrivateMembersClass.java
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// 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/third_party/ijar/test/PrivateNestedClass.java b/third_party/ijar/test/PrivateNestedClass.java
index 4459d5cd5f..ac1d072730 100644
--- a/third_party/ijar/test/PrivateNestedClass.java
+++ b/third_party/ijar/test/PrivateNestedClass.java
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// 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/third_party/ijar/test/StripVerifyingVisitor.java b/third_party/ijar/test/StripVerifyingVisitor.java
index 0045018625..f4700e6256 100644
--- a/third_party/ijar/test/StripVerifyingVisitor.java
+++ b/third_party/ijar/test/StripVerifyingVisitor.java
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// 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/third_party/ijar/test/TypeAnnotationTest2.java b/third_party/ijar/test/TypeAnnotationTest2.java
index a539790085..f08f1a6250 100644
--- a/third_party/ijar/test/TypeAnnotationTest2.java
+++ b/third_party/ijar/test/TypeAnnotationTest2.java
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// 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/third_party/ijar/test/UseDeprecatedParts.java b/third_party/ijar/test/UseDeprecatedParts.java
index 024a5816c0..e2c13f513b 100644
--- a/third_party/ijar/test/UseDeprecatedParts.java
+++ b/third_party/ijar/test/UseDeprecatedParts.java
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// 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/third_party/ijar/test/UseRestrictedAnnotation.java b/third_party/ijar/test/UseRestrictedAnnotation.java
index fcdb83ad2d..3811e7f400 100644
--- a/third_party/ijar/test/UseRestrictedAnnotation.java
+++ b/third_party/ijar/test/UseRestrictedAnnotation.java
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// 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/third_party/ijar/test/WellCompressed1.java b/third_party/ijar/test/WellCompressed1.java
index 7fc90f7556..e05d8c9f51 100644
--- a/third_party/ijar/test/WellCompressed1.java
+++ b/third_party/ijar/test/WellCompressed1.java
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// 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/third_party/ijar/test/WellCompressed2.java b/third_party/ijar/test/WellCompressed2.java
index ffb292f049..bf50dd0191 100644
--- a/third_party/ijar/test/WellCompressed2.java
+++ b/third_party/ijar/test/WellCompressed2.java
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// 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/third_party/ijar/test/invokedynamic/ClassWithLambda.java b/third_party/ijar/test/invokedynamic/ClassWithLambda.java
index f2f71059e4..23afe37034 100644
--- a/third_party/ijar/test/invokedynamic/ClassWithLambda.java
+++ b/third_party/ijar/test/invokedynamic/ClassWithLambda.java
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// 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/third_party/ijar/test/package-info.java b/third_party/ijar/test/package-info.java
index 3e122fc5f1..bdbeb7793d 100644
--- a/third_party/ijar/test/package-info.java
+++ b/third_party/ijar/test/package-info.java
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// 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/third_party/ijar/test/typeannotations2/NonNull.java b/third_party/ijar/test/typeannotations2/NonNull.java
index 089e70c5e7..928086589c 100644
--- a/third_party/ijar/test/typeannotations2/NonNull.java
+++ b/third_party/ijar/test/typeannotations2/NonNull.java
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// 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/third_party/ijar/test/typeannotations2/Nullable.java b/third_party/ijar/test/typeannotations2/Nullable.java
index 2f341c00ad..dfad81a775 100644
--- a/third_party/ijar/test/typeannotations2/Nullable.java
+++ b/third_party/ijar/test/typeannotations2/Nullable.java
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// 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/third_party/ijar/test/typeannotations2/Util.java b/third_party/ijar/test/typeannotations2/Util.java
index baaff4d96a..1afed13fdc 100644
--- a/third_party/ijar/test/typeannotations2/Util.java
+++ b/third_party/ijar/test/typeannotations2/Util.java
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// 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/third_party/ijar/test/typeannotations2/java/lang/annotation/ElementType.java b/third_party/ijar/test/typeannotations2/java/lang/annotation/ElementType.java
index 001b8c707a..634d69c4b6 100644
--- a/third_party/ijar/test/typeannotations2/java/lang/annotation/ElementType.java
+++ b/third_party/ijar/test/typeannotations2/java/lang/annotation/ElementType.java
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// 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/third_party/ijar/test/zip_test.sh b/third_party/ijar/test/zip_test.sh
index 19fd3de72e..4f3aef9fc8 100755
--- a/third_party/ijar/test/zip_test.sh
+++ b/third_party/ijar/test/zip_test.sh
@@ -1,6 +1,6 @@
#!/bin/bash -eu
#
-# Copyright 2015 Google Inc. All rights reserved.
+# Copyright 2015 The Bazel Authors. All rights reserved.
# 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/third_party/ijar/zip.cc b/third_party/ijar/zip.cc
index 8d35bd3401..b06e7cf38e 100644
--- a/third_party/ijar/zip.cc
+++ b/third_party/ijar/zip.cc
@@ -1,6 +1,4 @@
-// Copyright 2007 Alan Donovan. All rights reserved.
-//
-// Author: Alan Donovan <adonovan@google.com>
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// 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/third_party/ijar/zip.h b/third_party/ijar/zip.h
index 54a7a7c71c..aa17a47372 100644
--- a/third_party/ijar/zip.h
+++ b/third_party/ijar/zip.h
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// 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/third_party/ijar/zip_main.cc b/third_party/ijar/zip_main.cc
index 4715032060..285c0137e3 100644
--- a/third_party/ijar/zip_main.cc
+++ b/third_party/ijar/zip_main.cc
@@ -1,6 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
-//
-// Author: Alan Donovan <adonovan@google.com>
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.