aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/objc
diff options
context:
space:
mode:
authorGravatar Damien Martin-Guillerez <dmarting@google.com>2015-09-25 13:56:55 +0000
committerGravatar Han-Wen Nienhuys <hanwen@google.com>2015-09-25 14:43:08 +0000
commitf88f4d81acead9ef3e2f73d9a44afd76c2c239c1 (patch)
treeefa336ec85805e6b8150c0e13d0e75f55ff56406 /examples/objc
parent5c15b8658e8e990cd1812569284e2dd0b5762daa (diff)
Rationalize copyright headers
The headers were modified with `find . -type f -exec 'sed' '-Ei' 's|Copyright 201([45]) Google|Copyright 201\1 The Bazel Authors|' '{}' ';'` And manual edit for not Google owned copyright. Because of the nature of ijar, I did not modified the header of file owned by Alan Donovan. The list of authors were extracted from the git log. It is missing older Google contributors that can be added on-demand. -- MOS_MIGRATED_REVID=103938715
Diffstat (limited to 'examples/objc')
-rw-r--r--examples/objc/BUILD2
-rw-r--r--examples/objc/PrenotCalculator/AppDelegate.h2
-rw-r--r--examples/objc/PrenotCalculator/AppDelegate.m2
-rw-r--r--examples/objc/PrenotCalculator/CalculatedValues.h2
-rw-r--r--examples/objc/PrenotCalculator/CalculatedValues.m2
-rw-r--r--examples/objc/PrenotCalculator/CalculatorViewController.h2
-rw-r--r--examples/objc/PrenotCalculator/CalculatorViewController.m2
-rw-r--r--examples/objc/PrenotCalculator/CalculatorViewController.xib2
-rw-r--r--examples/objc/PrenotCalculator/CoreData.h2
-rw-r--r--examples/objc/PrenotCalculator/CoreData.m2
-rw-r--r--examples/objc/PrenotCalculator/DataModel.xcdatamodeld/DataModel-1.0.xcdatamodel/contents2
-rw-r--r--examples/objc/PrenotCalculator/DataModel.xcdatamodeld/DataModel-1.1.xcdatamodel/contents2
-rw-r--r--examples/objc/PrenotCalculator/Equation.h2
-rw-r--r--examples/objc/PrenotCalculator/Equation.m2
-rw-r--r--examples/objc/PrenotCalculator/Expression.h2
-rw-r--r--examples/objc/PrenotCalculator/Expression.m2
-rw-r--r--examples/objc/PrenotCalculator/Literal.h2
-rw-r--r--examples/objc/PrenotCalculator/Literal.m2
-rw-r--r--examples/objc/PrenotCalculator/PrenotCalculator-Info.plist2
-rw-r--r--examples/objc/PrenotCalculator/ValuesViewController.h2
-rw-r--r--examples/objc/PrenotCalculator/ValuesViewController.m2
-rw-r--r--examples/objc/PrenotCalculator/main.m2
22 files changed, 22 insertions, 22 deletions
diff --git a/examples/objc/BUILD b/examples/objc/BUILD
index 61e704b61a..3aeee3918f 100644
--- a/examples/objc/BUILD
+++ b/examples/objc/BUILD
@@ -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/examples/objc/PrenotCalculator/AppDelegate.h b/examples/objc/PrenotCalculator/AppDelegate.h
index 75b1f1da38..01b55df3d1 100644
--- a/examples/objc/PrenotCalculator/AppDelegate.h
+++ b/examples/objc/PrenotCalculator/AppDelegate.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/examples/objc/PrenotCalculator/AppDelegate.m b/examples/objc/PrenotCalculator/AppDelegate.m
index f6ecc4d6c3..3e61f8bb72 100644
--- a/examples/objc/PrenotCalculator/AppDelegate.m
+++ b/examples/objc/PrenotCalculator/AppDelegate.m
@@ -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/examples/objc/PrenotCalculator/CalculatedValues.h b/examples/objc/PrenotCalculator/CalculatedValues.h
index 026fadf6ca..2c29bef6c1 100644
--- a/examples/objc/PrenotCalculator/CalculatedValues.h
+++ b/examples/objc/PrenotCalculator/CalculatedValues.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/examples/objc/PrenotCalculator/CalculatedValues.m b/examples/objc/PrenotCalculator/CalculatedValues.m
index 2e401cb1c1..2ea8ed8ee2 100644
--- a/examples/objc/PrenotCalculator/CalculatedValues.m
+++ b/examples/objc/PrenotCalculator/CalculatedValues.m
@@ -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/examples/objc/PrenotCalculator/CalculatorViewController.h b/examples/objc/PrenotCalculator/CalculatorViewController.h
index 60dbc83bb8..6b53d7d60d 100644
--- a/examples/objc/PrenotCalculator/CalculatorViewController.h
+++ b/examples/objc/PrenotCalculator/CalculatorViewController.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/examples/objc/PrenotCalculator/CalculatorViewController.m b/examples/objc/PrenotCalculator/CalculatorViewController.m
index 5d26fefcc0..6e755a9ad5 100644
--- a/examples/objc/PrenotCalculator/CalculatorViewController.m
+++ b/examples/objc/PrenotCalculator/CalculatorViewController.m
@@ -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/examples/objc/PrenotCalculator/CalculatorViewController.xib b/examples/objc/PrenotCalculator/CalculatorViewController.xib
index 7ed3f42c60..f93dd821f7 100644
--- a/examples/objc/PrenotCalculator/CalculatorViewController.xib
+++ b/examples/objc/PrenotCalculator/CalculatorViewController.xib
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!--
- 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/examples/objc/PrenotCalculator/CoreData.h b/examples/objc/PrenotCalculator/CoreData.h
index 2b55bb1404..1f29db1a23 100644
--- a/examples/objc/PrenotCalculator/CoreData.h
+++ b/examples/objc/PrenotCalculator/CoreData.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/examples/objc/PrenotCalculator/CoreData.m b/examples/objc/PrenotCalculator/CoreData.m
index 43a1e89122..b3ba6049a3 100644
--- a/examples/objc/PrenotCalculator/CoreData.m
+++ b/examples/objc/PrenotCalculator/CoreData.m
@@ -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/examples/objc/PrenotCalculator/DataModel.xcdatamodeld/DataModel-1.0.xcdatamodel/contents b/examples/objc/PrenotCalculator/DataModel.xcdatamodeld/DataModel-1.0.xcdatamodel/contents
index 1cd3e57dae..05b9a8b8db 100644
--- a/examples/objc/PrenotCalculator/DataModel.xcdatamodeld/DataModel-1.0.xcdatamodel/contents
+++ b/examples/objc/PrenotCalculator/DataModel.xcdatamodeld/DataModel-1.0.xcdatamodel/contents
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
- 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/examples/objc/PrenotCalculator/DataModel.xcdatamodeld/DataModel-1.1.xcdatamodel/contents b/examples/objc/PrenotCalculator/DataModel.xcdatamodeld/DataModel-1.1.xcdatamodel/contents
index 80b28dd35a..02a74ec948 100644
--- a/examples/objc/PrenotCalculator/DataModel.xcdatamodeld/DataModel-1.1.xcdatamodel/contents
+++ b/examples/objc/PrenotCalculator/DataModel.xcdatamodeld/DataModel-1.1.xcdatamodel/contents
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
- 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/examples/objc/PrenotCalculator/Equation.h b/examples/objc/PrenotCalculator/Equation.h
index c04fc705e4..d6192ea0b7 100644
--- a/examples/objc/PrenotCalculator/Equation.h
+++ b/examples/objc/PrenotCalculator/Equation.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/examples/objc/PrenotCalculator/Equation.m b/examples/objc/PrenotCalculator/Equation.m
index 4894e82b93..2bf8f5f67c 100644
--- a/examples/objc/PrenotCalculator/Equation.m
+++ b/examples/objc/PrenotCalculator/Equation.m
@@ -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/examples/objc/PrenotCalculator/Expression.h b/examples/objc/PrenotCalculator/Expression.h
index f5b2dcf63e..ab6be2742e 100644
--- a/examples/objc/PrenotCalculator/Expression.h
+++ b/examples/objc/PrenotCalculator/Expression.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/examples/objc/PrenotCalculator/Expression.m b/examples/objc/PrenotCalculator/Expression.m
index 68e954170c..5a304d791d 100644
--- a/examples/objc/PrenotCalculator/Expression.m
+++ b/examples/objc/PrenotCalculator/Expression.m
@@ -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/examples/objc/PrenotCalculator/Literal.h b/examples/objc/PrenotCalculator/Literal.h
index 62ee13c466..fab3369b55 100644
--- a/examples/objc/PrenotCalculator/Literal.h
+++ b/examples/objc/PrenotCalculator/Literal.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/examples/objc/PrenotCalculator/Literal.m b/examples/objc/PrenotCalculator/Literal.m
index c103f46510..d3c8ed7802 100644
--- a/examples/objc/PrenotCalculator/Literal.m
+++ b/examples/objc/PrenotCalculator/Literal.m
@@ -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/examples/objc/PrenotCalculator/PrenotCalculator-Info.plist b/examples/objc/PrenotCalculator/PrenotCalculator-Info.plist
index 178f34c4c0..71f8c75bd4 100644
--- a/examples/objc/PrenotCalculator/PrenotCalculator-Info.plist
+++ b/examples/objc/PrenotCalculator/PrenotCalculator-Info.plist
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- 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/examples/objc/PrenotCalculator/ValuesViewController.h b/examples/objc/PrenotCalculator/ValuesViewController.h
index 27055b905f..4034f89c7a 100644
--- a/examples/objc/PrenotCalculator/ValuesViewController.h
+++ b/examples/objc/PrenotCalculator/ValuesViewController.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/examples/objc/PrenotCalculator/ValuesViewController.m b/examples/objc/PrenotCalculator/ValuesViewController.m
index 333ea11b1f..c6c9499c3f 100644
--- a/examples/objc/PrenotCalculator/ValuesViewController.m
+++ b/examples/objc/PrenotCalculator/ValuesViewController.m
@@ -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/examples/objc/PrenotCalculator/main.m b/examples/objc/PrenotCalculator/main.m
index d70550a730..9c7f114bdb 100644
--- a/examples/objc/PrenotCalculator/main.m
+++ b/examples/objc/PrenotCalculator/main.m
@@ -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.