aboutsummaryrefslogtreecommitdiff
path: root/factory
diff options
context:
space:
mode:
authoremcmanus <emcmanus@google.com>2019-04-18 13:48:38 -0700
committerRon Shapiro <shapiro.rd@gmail.com>2019-04-29 11:34:16 -0400
commit5ff5e37a22d0b439c963b2e079832338b5dad825 (patch)
treec7387bd732800caefe3276c7360f00b4bd923233 /factory
parent445b9eda1e6c6ac5b789ed15f16ebd88d7aadf5a (diff)
downloadauto-5ff5e37a22d0b439c963b2e079832338b5dad825.tar.gz
Update copyrights to say Google LLC instead of Google Inc.
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=244250754
Diffstat (limited to 'factory')
-rw-r--r--factory/README.md2
-rw-r--r--factory/pom.xml2
-rw-r--r--factory/src/it/functional/pom.xml2
-rw-r--r--factory/src/it/functional/src/main/java/com/google/auto/factory/DaggerModule.java2
-rw-r--r--factory/src/it/functional/src/main/java/com/google/auto/factory/Dependency.java2
-rw-r--r--factory/src/it/functional/src/main/java/com/google/auto/factory/DependencyImpl.java2
-rw-r--r--factory/src/it/functional/src/main/java/com/google/auto/factory/FactoryComponent.java2
-rw-r--r--factory/src/it/functional/src/main/java/com/google/auto/factory/FactoryGenerated.java2
-rw-r--r--factory/src/it/functional/src/main/java/com/google/auto/factory/FactoryInterface.java2
-rw-r--r--factory/src/it/functional/src/main/java/com/google/auto/factory/GuiceModule.java2
-rw-r--r--factory/src/it/functional/src/main/java/com/google/auto/factory/QualifiedDependencyImpl.java2
-rw-r--r--factory/src/it/functional/src/main/java/com/google/auto/factory/Qualifier.java2
-rw-r--r--factory/src/main/java/com/google/auto/factory/AutoFactory.java2
-rw-r--r--factory/src/main/java/com/google/auto/factory/Provided.java2
-rw-r--r--factory/src/main/java/com/google/auto/factory/processor/AnnotationValues.java2
-rw-r--r--factory/src/main/java/com/google/auto/factory/processor/AutoFactoryDeclaration.java2
-rw-r--r--factory/src/main/java/com/google/auto/factory/processor/AutoFactoryProcessor.java2
-rw-r--r--factory/src/main/java/com/google/auto/factory/processor/Elements2.java2
-rw-r--r--factory/src/main/java/com/google/auto/factory/processor/FactoryDescriptor.java2
-rw-r--r--factory/src/main/java/com/google/auto/factory/processor/FactoryDescriptorGenerator.java2
-rw-r--r--factory/src/main/java/com/google/auto/factory/processor/FactoryMethodDescriptor.java2
-rw-r--r--factory/src/main/java/com/google/auto/factory/processor/FactoryWriter.java2
-rw-r--r--factory/src/main/java/com/google/auto/factory/processor/ImplementationMethodDescriptor.java2
-rw-r--r--factory/src/main/java/com/google/auto/factory/processor/Key.java2
-rw-r--r--factory/src/main/java/com/google/auto/factory/processor/Mirrors.java2
-rw-r--r--factory/src/main/java/com/google/auto/factory/processor/Parameter.java2
-rw-r--r--factory/src/main/java/com/google/auto/factory/processor/ProvidedChecker.java2
-rw-r--r--factory/src/main/java/com/google/auto/factory/processor/ProviderField.java2
-rw-r--r--factory/src/main/java/com/google/auto/factory/processor/package-info.java2
-rw-r--r--factory/src/test/java/com/google/auto/factory/processor/AutoFactoryDeclarationTest.java2
-rw-r--r--factory/src/test/java/com/google/auto/factory/processor/AutoFactoryProcessorTest.java2
-rw-r--r--factory/src/test/resources/bad/EnumSupertype.java2
-rw-r--r--factory/src/test/resources/bad/FinalSupertype.java2
-rw-r--r--factory/src/test/resources/bad/GenericClass.java2
-rw-r--r--factory/src/test/resources/bad/InterfaceSupertype.java2
-rw-r--r--factory/src/test/resources/bad/InvalidCustomName.java2
-rw-r--r--factory/src/test/resources/bad/MixedFinals.java2
-rw-r--r--factory/src/test/resources/bad/ProvidedButNoAutoFactory.java2
-rw-r--r--factory/src/test/resources/bad/ProvidedOnMethodParameter.java2
-rw-r--r--factory/src/test/resources/expected/CheckerFrameworkNullableFactory.java2
-rw-r--r--factory/src/test/resources/expected/ClassUsingQualifierWithArgsFactory.java2
-rw-r--r--factory/src/test/resources/expected/ConstructorAnnotatedFactory.java2
-rw-r--r--factory/src/test/resources/expected/ConstructorAnnotatedNonFinalFactory.java2
-rw-r--r--factory/src/test/resources/expected/CustomNamedFactory.java2
-rw-r--r--factory/src/test/resources/expected/CustomNullableFactory.java2
-rw-r--r--factory/src/test/resources/expected/FactoryExtendingAbstractClassFactory.java2
-rw-r--r--factory/src/test/resources/expected/FactoryImplementingCreateMethod_ConcreteClassFactory.java2
-rw-r--r--factory/src/test/resources/expected/FactoryImplementingGenericInterfaceExtensionFactory.java2
-rw-r--r--factory/src/test/resources/expected/MixedDepsImplementingInterfacesFactory.java2
-rw-r--r--factory/src/test/resources/expected/MultipleFactoriesConflictingParameterNamesFactory.java2
-rw-r--r--factory/src/test/resources/expected/MultipleFactoriesImplementingInterface_ClassAFactory.java2
-rw-r--r--factory/src/test/resources/expected/MultipleFactoriesImplementingInterface_ClassBFactory.java2
-rw-r--r--factory/src/test/resources/expected/MultipleProvidedParamsSameKeyFactory.java2
-rw-r--r--factory/src/test/resources/expected/NestedClassCustomNamedFactory.java2
-rw-r--r--factory/src/test/resources/expected/NestedClasses_SimpleNestedClassFactory.java2
-rw-r--r--factory/src/test/resources/expected/OnlyPrimitivesFactory.java2
-rw-r--r--factory/src/test/resources/expected/ProviderArgumentToCreateMethodFactory.java2
-rw-r--r--factory/src/test/resources/expected/PublicClassFactory.java2
-rw-r--r--factory/src/test/resources/expected/SimpleClassFactory.java2
-rw-r--r--factory/src/test/resources/expected/SimpleClassImplementingMarkerFactory.java2
-rw-r--r--factory/src/test/resources/expected/SimpleClassImplementingSimpleInterfaceFactory.java2
-rw-r--r--factory/src/test/resources/expected/SimpleClassMixedDepsFactory.java2
-rw-r--r--factory/src/test/resources/expected/SimpleClassNonFinalFactory.java2
-rw-r--r--factory/src/test/resources/expected/SimpleClassNullableParametersFactory.java2
-rw-r--r--factory/src/test/resources/expected/SimpleClassPassedDepsFactory.java2
-rw-r--r--factory/src/test/resources/expected/SimpleClassProvidedDepsFactory.java2
-rw-r--r--factory/src/test/resources/expected/SimpleClassProvidedProviderDepsFactory.java2
-rw-r--r--factory/src/test/resources/expected/SimpleClassVarargsFactory.java2
-rw-r--r--factory/src/test/resources/good/CheckerFrameworkNullable.java2
-rw-r--r--factory/src/test/resources/good/ClassUsingQualifierWithArgs.java2
-rw-r--r--factory/src/test/resources/good/ConstructorAnnotated.java2
-rw-r--r--factory/src/test/resources/good/ConstructorAnnotatedNonFinal.java2
-rw-r--r--factory/src/test/resources/good/CustomNullable.java2
-rw-r--r--factory/src/test/resources/good/FactoryExtendingAbstractClass.java2
-rw-r--r--factory/src/test/resources/good/FactoryExtendingAbstractClassWithConstructorParams.java2
-rw-r--r--factory/src/test/resources/good/FactoryExtendingAbstractClassWithMultipleConstructors.java2
-rw-r--r--factory/src/test/resources/good/FactoryImplementingCreateMethod.java2
-rw-r--r--factory/src/test/resources/good/FactoryImplementingGenericInterfaceExtension.java2
-rw-r--r--factory/src/test/resources/good/MixedDepsImplementingInterfaces.java2
-rw-r--r--factory/src/test/resources/good/MultipleFactoriesConflictingParameterNames.java2
-rw-r--r--factory/src/test/resources/good/MultipleFactoriesImplementingInterface.java2
-rw-r--r--factory/src/test/resources/good/MultipleProvidedParamsSameKey.java2
-rw-r--r--factory/src/test/resources/good/NestedClasses.java2
-rw-r--r--factory/src/test/resources/good/OnlyPrimitives.java2
-rw-r--r--factory/src/test/resources/good/ProviderArgumentToCreateMethod.java2
-rw-r--r--factory/src/test/resources/good/PublicClass.java2
-rw-r--r--factory/src/test/resources/good/SimpleClass.java2
-rw-r--r--factory/src/test/resources/good/SimpleClassCustomName.java2
-rw-r--r--factory/src/test/resources/good/SimpleClassImplementingMarker.java2
-rw-r--r--factory/src/test/resources/good/SimpleClassImplementingSimpleInterface.java2
-rw-r--r--factory/src/test/resources/good/SimpleClassMixedDeps.java2
-rw-r--r--factory/src/test/resources/good/SimpleClassNonFinal.java2
-rw-r--r--factory/src/test/resources/good/SimpleClassNullableParameters.java2
-rw-r--r--factory/src/test/resources/good/SimpleClassPassedDeps.java2
-rw-r--r--factory/src/test/resources/good/SimpleClassProvidedDeps.java2
-rw-r--r--factory/src/test/resources/good/SimpleClassProvidedProviderDeps.java2
-rw-r--r--factory/src/test/resources/good/SimpleClassVarargs.java2
-rw-r--r--factory/src/test/resources/support/AQualifier.java2
-rw-r--r--factory/src/test/resources/support/BQualifier.java2
-rw-r--r--factory/src/test/resources/support/QualifierWithArgs.java2
100 files changed, 100 insertions, 100 deletions
diff --git a/factory/README.md b/factory/README.md
index 859a9e1a..f5874fe9 100644
--- a/factory/README.md
+++ b/factory/README.md
@@ -83,7 +83,7 @@ artifact as an "optional" dependency:
License
-------
- Copyright 2013 Google, Inc.
+ Copyright 2013 Google LLC
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/factory/pom.xml b/factory/pom.xml
index 5af975d0..8602ea0a 100644
--- a/factory/pom.xml
+++ b/factory/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (C) 2012 Google, Inc.
+ Copyright 2012 Google LLC
Copyright (C) 2012 Square, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/factory/src/it/functional/pom.xml b/factory/src/it/functional/pom.xml
index b8bb38d1..d627f88f 100644
--- a/factory/src/it/functional/pom.xml
+++ b/factory/src/it/functional/pom.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright (C) 2013 Google, Inc.
+ Copyright 2013 Google LLC
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/factory/src/it/functional/src/main/java/com/google/auto/factory/DaggerModule.java b/factory/src/it/functional/src/main/java/com/google/auto/factory/DaggerModule.java
index 9b1687f0..a9bf2de8 100644
--- a/factory/src/it/functional/src/main/java/com/google/auto/factory/DaggerModule.java
+++ b/factory/src/it/functional/src/main/java/com/google/auto/factory/DaggerModule.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/it/functional/src/main/java/com/google/auto/factory/Dependency.java b/factory/src/it/functional/src/main/java/com/google/auto/factory/Dependency.java
index e71d9cbe..18d19eba 100644
--- a/factory/src/it/functional/src/main/java/com/google/auto/factory/Dependency.java
+++ b/factory/src/it/functional/src/main/java/com/google/auto/factory/Dependency.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/it/functional/src/main/java/com/google/auto/factory/DependencyImpl.java b/factory/src/it/functional/src/main/java/com/google/auto/factory/DependencyImpl.java
index 7c2a3789..4c019ea6 100644
--- a/factory/src/it/functional/src/main/java/com/google/auto/factory/DependencyImpl.java
+++ b/factory/src/it/functional/src/main/java/com/google/auto/factory/DependencyImpl.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/it/functional/src/main/java/com/google/auto/factory/FactoryComponent.java b/factory/src/it/functional/src/main/java/com/google/auto/factory/FactoryComponent.java
index a14530c9..d2fbe852 100644
--- a/factory/src/it/functional/src/main/java/com/google/auto/factory/FactoryComponent.java
+++ b/factory/src/it/functional/src/main/java/com/google/auto/factory/FactoryComponent.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2015 Google, Inc.
+ * Copyright 2015 Google LLC
*
* 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/factory/src/it/functional/src/main/java/com/google/auto/factory/FactoryGenerated.java b/factory/src/it/functional/src/main/java/com/google/auto/factory/FactoryGenerated.java
index 8dbd2ad4..485e23cf 100644
--- a/factory/src/it/functional/src/main/java/com/google/auto/factory/FactoryGenerated.java
+++ b/factory/src/it/functional/src/main/java/com/google/auto/factory/FactoryGenerated.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/it/functional/src/main/java/com/google/auto/factory/FactoryInterface.java b/factory/src/it/functional/src/main/java/com/google/auto/factory/FactoryInterface.java
index c0071b59..f0e6738f 100644
--- a/factory/src/it/functional/src/main/java/com/google/auto/factory/FactoryInterface.java
+++ b/factory/src/it/functional/src/main/java/com/google/auto/factory/FactoryInterface.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/it/functional/src/main/java/com/google/auto/factory/GuiceModule.java b/factory/src/it/functional/src/main/java/com/google/auto/factory/GuiceModule.java
index 2c5fad52..bf6ce71b 100644
--- a/factory/src/it/functional/src/main/java/com/google/auto/factory/GuiceModule.java
+++ b/factory/src/it/functional/src/main/java/com/google/auto/factory/GuiceModule.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/it/functional/src/main/java/com/google/auto/factory/QualifiedDependencyImpl.java b/factory/src/it/functional/src/main/java/com/google/auto/factory/QualifiedDependencyImpl.java
index 3d65ad5c..ff368133 100644
--- a/factory/src/it/functional/src/main/java/com/google/auto/factory/QualifiedDependencyImpl.java
+++ b/factory/src/it/functional/src/main/java/com/google/auto/factory/QualifiedDependencyImpl.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/it/functional/src/main/java/com/google/auto/factory/Qualifier.java b/factory/src/it/functional/src/main/java/com/google/auto/factory/Qualifier.java
index 54424e87..a1780e0f 100644
--- a/factory/src/it/functional/src/main/java/com/google/auto/factory/Qualifier.java
+++ b/factory/src/it/functional/src/main/java/com/google/auto/factory/Qualifier.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2015 Google, Inc.
+ * Copyright 2015 Google LLC
*
* 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/factory/src/main/java/com/google/auto/factory/AutoFactory.java b/factory/src/main/java/com/google/auto/factory/AutoFactory.java
index 98262401..2ef84cc3 100644
--- a/factory/src/main/java/com/google/auto/factory/AutoFactory.java
+++ b/factory/src/main/java/com/google/auto/factory/AutoFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/main/java/com/google/auto/factory/Provided.java b/factory/src/main/java/com/google/auto/factory/Provided.java
index 1cab7930..e81e4aa6 100644
--- a/factory/src/main/java/com/google/auto/factory/Provided.java
+++ b/factory/src/main/java/com/google/auto/factory/Provided.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/main/java/com/google/auto/factory/processor/AnnotationValues.java b/factory/src/main/java/com/google/auto/factory/processor/AnnotationValues.java
index 1b1e65f4..b767c47f 100644
--- a/factory/src/main/java/com/google/auto/factory/processor/AnnotationValues.java
+++ b/factory/src/main/java/com/google/auto/factory/processor/AnnotationValues.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/main/java/com/google/auto/factory/processor/AutoFactoryDeclaration.java b/factory/src/main/java/com/google/auto/factory/processor/AutoFactoryDeclaration.java
index 04466a85..ad4ccb8b 100644
--- a/factory/src/main/java/com/google/auto/factory/processor/AutoFactoryDeclaration.java
+++ b/factory/src/main/java/com/google/auto/factory/processor/AutoFactoryDeclaration.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/main/java/com/google/auto/factory/processor/AutoFactoryProcessor.java b/factory/src/main/java/com/google/auto/factory/processor/AutoFactoryProcessor.java
index aa6d28ba..38ef55fa 100644
--- a/factory/src/main/java/com/google/auto/factory/processor/AutoFactoryProcessor.java
+++ b/factory/src/main/java/com/google/auto/factory/processor/AutoFactoryProcessor.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/main/java/com/google/auto/factory/processor/Elements2.java b/factory/src/main/java/com/google/auto/factory/processor/Elements2.java
index be7ed2f5..30230f7f 100644
--- a/factory/src/main/java/com/google/auto/factory/processor/Elements2.java
+++ b/factory/src/main/java/com/google/auto/factory/processor/Elements2.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/main/java/com/google/auto/factory/processor/FactoryDescriptor.java b/factory/src/main/java/com/google/auto/factory/processor/FactoryDescriptor.java
index 12f6a744..8815ce5e 100644
--- a/factory/src/main/java/com/google/auto/factory/processor/FactoryDescriptor.java
+++ b/factory/src/main/java/com/google/auto/factory/processor/FactoryDescriptor.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/main/java/com/google/auto/factory/processor/FactoryDescriptorGenerator.java b/factory/src/main/java/com/google/auto/factory/processor/FactoryDescriptorGenerator.java
index 339ed645..8a54173a 100644
--- a/factory/src/main/java/com/google/auto/factory/processor/FactoryDescriptorGenerator.java
+++ b/factory/src/main/java/com/google/auto/factory/processor/FactoryDescriptorGenerator.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/main/java/com/google/auto/factory/processor/FactoryMethodDescriptor.java b/factory/src/main/java/com/google/auto/factory/processor/FactoryMethodDescriptor.java
index 1307622e..c3a0159d 100644
--- a/factory/src/main/java/com/google/auto/factory/processor/FactoryMethodDescriptor.java
+++ b/factory/src/main/java/com/google/auto/factory/processor/FactoryMethodDescriptor.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/main/java/com/google/auto/factory/processor/FactoryWriter.java b/factory/src/main/java/com/google/auto/factory/processor/FactoryWriter.java
index e1c57eb5..03bd420d 100644
--- a/factory/src/main/java/com/google/auto/factory/processor/FactoryWriter.java
+++ b/factory/src/main/java/com/google/auto/factory/processor/FactoryWriter.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/main/java/com/google/auto/factory/processor/ImplementationMethodDescriptor.java b/factory/src/main/java/com/google/auto/factory/processor/ImplementationMethodDescriptor.java
index 88f91ca1..855e38b3 100644
--- a/factory/src/main/java/com/google/auto/factory/processor/ImplementationMethodDescriptor.java
+++ b/factory/src/main/java/com/google/auto/factory/processor/ImplementationMethodDescriptor.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/main/java/com/google/auto/factory/processor/Key.java b/factory/src/main/java/com/google/auto/factory/processor/Key.java
index 01a9ac1e..e1c1c296 100644
--- a/factory/src/main/java/com/google/auto/factory/processor/Key.java
+++ b/factory/src/main/java/com/google/auto/factory/processor/Key.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/main/java/com/google/auto/factory/processor/Mirrors.java b/factory/src/main/java/com/google/auto/factory/processor/Mirrors.java
index 8fb8f2f3..c5b7d8bf 100644
--- a/factory/src/main/java/com/google/auto/factory/processor/Mirrors.java
+++ b/factory/src/main/java/com/google/auto/factory/processor/Mirrors.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/main/java/com/google/auto/factory/processor/Parameter.java b/factory/src/main/java/com/google/auto/factory/processor/Parameter.java
index cd1dcda0..229e11b7 100644
--- a/factory/src/main/java/com/google/auto/factory/processor/Parameter.java
+++ b/factory/src/main/java/com/google/auto/factory/processor/Parameter.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/main/java/com/google/auto/factory/processor/ProvidedChecker.java b/factory/src/main/java/com/google/auto/factory/processor/ProvidedChecker.java
index aaf3712c..fe4c1fd2 100644
--- a/factory/src/main/java/com/google/auto/factory/processor/ProvidedChecker.java
+++ b/factory/src/main/java/com/google/auto/factory/processor/ProvidedChecker.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/main/java/com/google/auto/factory/processor/ProviderField.java b/factory/src/main/java/com/google/auto/factory/processor/ProviderField.java
index 91ccb70a..855c1feb 100644
--- a/factory/src/main/java/com/google/auto/factory/processor/ProviderField.java
+++ b/factory/src/main/java/com/google/auto/factory/processor/ProviderField.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2016 Google, Inc.
+ * Copyright 2016 Google LLC
*
* 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/factory/src/main/java/com/google/auto/factory/processor/package-info.java b/factory/src/main/java/com/google/auto/factory/processor/package-info.java
index a4d1ea44..7339020a 100644
--- a/factory/src/main/java/com/google/auto/factory/processor/package-info.java
+++ b/factory/src/main/java/com/google/auto/factory/processor/package-info.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 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
diff --git a/factory/src/test/java/com/google/auto/factory/processor/AutoFactoryDeclarationTest.java b/factory/src/test/java/com/google/auto/factory/processor/AutoFactoryDeclarationTest.java
index d075bd67..1b23a65d 100644
--- a/factory/src/test/java/com/google/auto/factory/processor/AutoFactoryDeclarationTest.java
+++ b/factory/src/test/java/com/google/auto/factory/processor/AutoFactoryDeclarationTest.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/java/com/google/auto/factory/processor/AutoFactoryProcessorTest.java b/factory/src/test/java/com/google/auto/factory/processor/AutoFactoryProcessorTest.java
index 293a9deb..671ddd3f 100644
--- a/factory/src/test/java/com/google/auto/factory/processor/AutoFactoryProcessorTest.java
+++ b/factory/src/test/java/com/google/auto/factory/processor/AutoFactoryProcessorTest.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/bad/EnumSupertype.java b/factory/src/test/resources/bad/EnumSupertype.java
index b432ea41..00913b0c 100644
--- a/factory/src/test/resources/bad/EnumSupertype.java
+++ b/factory/src/test/resources/bad/EnumSupertype.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/bad/FinalSupertype.java b/factory/src/test/resources/bad/FinalSupertype.java
index 157678be..4822f114 100644
--- a/factory/src/test/resources/bad/FinalSupertype.java
+++ b/factory/src/test/resources/bad/FinalSupertype.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/bad/GenericClass.java b/factory/src/test/resources/bad/GenericClass.java
index eba76e36..4542fecd 100644
--- a/factory/src/test/resources/bad/GenericClass.java
+++ b/factory/src/test/resources/bad/GenericClass.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/bad/InterfaceSupertype.java b/factory/src/test/resources/bad/InterfaceSupertype.java
index faed36dc..2bdce5e7 100644
--- a/factory/src/test/resources/bad/InterfaceSupertype.java
+++ b/factory/src/test/resources/bad/InterfaceSupertype.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/bad/InvalidCustomName.java b/factory/src/test/resources/bad/InvalidCustomName.java
index 9c6b31ef..5734ee7f 100644
--- a/factory/src/test/resources/bad/InvalidCustomName.java
+++ b/factory/src/test/resources/bad/InvalidCustomName.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/bad/MixedFinals.java b/factory/src/test/resources/bad/MixedFinals.java
index 56538f06..4b9ef209 100644
--- a/factory/src/test/resources/bad/MixedFinals.java
+++ b/factory/src/test/resources/bad/MixedFinals.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/bad/ProvidedButNoAutoFactory.java b/factory/src/test/resources/bad/ProvidedButNoAutoFactory.java
index f973545a..40269a4d 100644
--- a/factory/src/test/resources/bad/ProvidedButNoAutoFactory.java
+++ b/factory/src/test/resources/bad/ProvidedButNoAutoFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/bad/ProvidedOnMethodParameter.java b/factory/src/test/resources/bad/ProvidedOnMethodParameter.java
index 4e858344..ab5982a1 100644
--- a/factory/src/test/resources/bad/ProvidedOnMethodParameter.java
+++ b/factory/src/test/resources/bad/ProvidedOnMethodParameter.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/expected/CheckerFrameworkNullableFactory.java b/factory/src/test/resources/expected/CheckerFrameworkNullableFactory.java
index bc18d84e..bea01e98 100644
--- a/factory/src/test/resources/expected/CheckerFrameworkNullableFactory.java
+++ b/factory/src/test/resources/expected/CheckerFrameworkNullableFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2016 Google, Inc.
+ * Copyright 2016 Google LLC
*
* 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/factory/src/test/resources/expected/ClassUsingQualifierWithArgsFactory.java b/factory/src/test/resources/expected/ClassUsingQualifierWithArgsFactory.java
index 592bc67b..b5bd89c1 100644
--- a/factory/src/test/resources/expected/ClassUsingQualifierWithArgsFactory.java
+++ b/factory/src/test/resources/expected/ClassUsingQualifierWithArgsFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2015 Google, Inc.
+ * Copyright 2015 Google LLC
*
* 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/factory/src/test/resources/expected/ConstructorAnnotatedFactory.java b/factory/src/test/resources/expected/ConstructorAnnotatedFactory.java
index 7d7d7e35..6e9d242e 100644
--- a/factory/src/test/resources/expected/ConstructorAnnotatedFactory.java
+++ b/factory/src/test/resources/expected/ConstructorAnnotatedFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/expected/ConstructorAnnotatedNonFinalFactory.java b/factory/src/test/resources/expected/ConstructorAnnotatedNonFinalFactory.java
index 6a5538cc..f662642d 100644
--- a/factory/src/test/resources/expected/ConstructorAnnotatedNonFinalFactory.java
+++ b/factory/src/test/resources/expected/ConstructorAnnotatedNonFinalFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/expected/CustomNamedFactory.java b/factory/src/test/resources/expected/CustomNamedFactory.java
index 2d116bad..c388387c 100644
--- a/factory/src/test/resources/expected/CustomNamedFactory.java
+++ b/factory/src/test/resources/expected/CustomNamedFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/expected/CustomNullableFactory.java b/factory/src/test/resources/expected/CustomNullableFactory.java
index dc81f44a..31bb5bfa 100644
--- a/factory/src/test/resources/expected/CustomNullableFactory.java
+++ b/factory/src/test/resources/expected/CustomNullableFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2016 Google, Inc.
+ * Copyright 2016 Google LLC
*
* 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/factory/src/test/resources/expected/FactoryExtendingAbstractClassFactory.java b/factory/src/test/resources/expected/FactoryExtendingAbstractClassFactory.java
index 4a731489..c56afb0a 100644
--- a/factory/src/test/resources/expected/FactoryExtendingAbstractClassFactory.java
+++ b/factory/src/test/resources/expected/FactoryExtendingAbstractClassFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/expected/FactoryImplementingCreateMethod_ConcreteClassFactory.java b/factory/src/test/resources/expected/FactoryImplementingCreateMethod_ConcreteClassFactory.java
index ef8b3b7b..f23dc9ab 100644
--- a/factory/src/test/resources/expected/FactoryImplementingCreateMethod_ConcreteClassFactory.java
+++ b/factory/src/test/resources/expected/FactoryImplementingCreateMethod_ConcreteClassFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2016 Google, Inc.
+ * Copyright 2016 Google LLC
*
* 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/factory/src/test/resources/expected/FactoryImplementingGenericInterfaceExtensionFactory.java b/factory/src/test/resources/expected/FactoryImplementingGenericInterfaceExtensionFactory.java
index 6b64db1d..3bfc5262 100644
--- a/factory/src/test/resources/expected/FactoryImplementingGenericInterfaceExtensionFactory.java
+++ b/factory/src/test/resources/expected/FactoryImplementingGenericInterfaceExtensionFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/expected/MixedDepsImplementingInterfacesFactory.java b/factory/src/test/resources/expected/MixedDepsImplementingInterfacesFactory.java
index 354d7c0d..19f2c138 100644
--- a/factory/src/test/resources/expected/MixedDepsImplementingInterfacesFactory.java
+++ b/factory/src/test/resources/expected/MixedDepsImplementingInterfacesFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/expected/MultipleFactoriesConflictingParameterNamesFactory.java b/factory/src/test/resources/expected/MultipleFactoriesConflictingParameterNamesFactory.java
index 91cf151e..fac6e13a 100644
--- a/factory/src/test/resources/expected/MultipleFactoriesConflictingParameterNamesFactory.java
+++ b/factory/src/test/resources/expected/MultipleFactoriesConflictingParameterNamesFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2016 Google, Inc.
+ * Copyright 2016 Google LLC
*
* 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/factory/src/test/resources/expected/MultipleFactoriesImplementingInterface_ClassAFactory.java b/factory/src/test/resources/expected/MultipleFactoriesImplementingInterface_ClassAFactory.java
index 85de4571..5ee2b2fe 100644
--- a/factory/src/test/resources/expected/MultipleFactoriesImplementingInterface_ClassAFactory.java
+++ b/factory/src/test/resources/expected/MultipleFactoriesImplementingInterface_ClassAFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2015 Google, Inc.
+ * Copyright 2015 Google LLC
*
* 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/factory/src/test/resources/expected/MultipleFactoriesImplementingInterface_ClassBFactory.java b/factory/src/test/resources/expected/MultipleFactoriesImplementingInterface_ClassBFactory.java
index 17d9be65..f6540683 100644
--- a/factory/src/test/resources/expected/MultipleFactoriesImplementingInterface_ClassBFactory.java
+++ b/factory/src/test/resources/expected/MultipleFactoriesImplementingInterface_ClassBFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2015 Google, Inc.
+ * Copyright 2015 Google LLC
*
* 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/factory/src/test/resources/expected/MultipleProvidedParamsSameKeyFactory.java b/factory/src/test/resources/expected/MultipleProvidedParamsSameKeyFactory.java
index 56d7fd28..de7bad72 100644
--- a/factory/src/test/resources/expected/MultipleProvidedParamsSameKeyFactory.java
+++ b/factory/src/test/resources/expected/MultipleProvidedParamsSameKeyFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2016 Google, Inc.
+ * Copyright 2016 Google LLC
*
* 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/factory/src/test/resources/expected/NestedClassCustomNamedFactory.java b/factory/src/test/resources/expected/NestedClassCustomNamedFactory.java
index e86cc4ef..bf6a4681 100644
--- a/factory/src/test/resources/expected/NestedClassCustomNamedFactory.java
+++ b/factory/src/test/resources/expected/NestedClassCustomNamedFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/expected/NestedClasses_SimpleNestedClassFactory.java b/factory/src/test/resources/expected/NestedClasses_SimpleNestedClassFactory.java
index f649eda7..f982e86f 100644
--- a/factory/src/test/resources/expected/NestedClasses_SimpleNestedClassFactory.java
+++ b/factory/src/test/resources/expected/NestedClasses_SimpleNestedClassFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/expected/OnlyPrimitivesFactory.java b/factory/src/test/resources/expected/OnlyPrimitivesFactory.java
index 6db73d28..ec60c58e 100644
--- a/factory/src/test/resources/expected/OnlyPrimitivesFactory.java
+++ b/factory/src/test/resources/expected/OnlyPrimitivesFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2017 Google, Inc.
+ * Copyright 2017 Google LLC
*
* 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/factory/src/test/resources/expected/ProviderArgumentToCreateMethodFactory.java b/factory/src/test/resources/expected/ProviderArgumentToCreateMethodFactory.java
index 9e12bb33..4d1a4cf5 100644
--- a/factory/src/test/resources/expected/ProviderArgumentToCreateMethodFactory.java
+++ b/factory/src/test/resources/expected/ProviderArgumentToCreateMethodFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2016 Google, Inc.
+ * Copyright 2016 Google LLC
*
* 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/factory/src/test/resources/expected/PublicClassFactory.java b/factory/src/test/resources/expected/PublicClassFactory.java
index 5d9361e4..06671dc6 100644
--- a/factory/src/test/resources/expected/PublicClassFactory.java
+++ b/factory/src/test/resources/expected/PublicClassFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/expected/SimpleClassFactory.java b/factory/src/test/resources/expected/SimpleClassFactory.java
index 9df1be3f..308d2cdc 100644
--- a/factory/src/test/resources/expected/SimpleClassFactory.java
+++ b/factory/src/test/resources/expected/SimpleClassFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/expected/SimpleClassImplementingMarkerFactory.java b/factory/src/test/resources/expected/SimpleClassImplementingMarkerFactory.java
index 272ba29c..6c611e99 100644
--- a/factory/src/test/resources/expected/SimpleClassImplementingMarkerFactory.java
+++ b/factory/src/test/resources/expected/SimpleClassImplementingMarkerFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/expected/SimpleClassImplementingSimpleInterfaceFactory.java b/factory/src/test/resources/expected/SimpleClassImplementingSimpleInterfaceFactory.java
index 12505fcc..720e7d0f 100644
--- a/factory/src/test/resources/expected/SimpleClassImplementingSimpleInterfaceFactory.java
+++ b/factory/src/test/resources/expected/SimpleClassImplementingSimpleInterfaceFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/expected/SimpleClassMixedDepsFactory.java b/factory/src/test/resources/expected/SimpleClassMixedDepsFactory.java
index 3107ac10..ccdea61c 100644
--- a/factory/src/test/resources/expected/SimpleClassMixedDepsFactory.java
+++ b/factory/src/test/resources/expected/SimpleClassMixedDepsFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/expected/SimpleClassNonFinalFactory.java b/factory/src/test/resources/expected/SimpleClassNonFinalFactory.java
index b8d8a510..d323812e 100644
--- a/factory/src/test/resources/expected/SimpleClassNonFinalFactory.java
+++ b/factory/src/test/resources/expected/SimpleClassNonFinalFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/expected/SimpleClassNullableParametersFactory.java b/factory/src/test/resources/expected/SimpleClassNullableParametersFactory.java
index 7c690fce..e3540386 100644
--- a/factory/src/test/resources/expected/SimpleClassNullableParametersFactory.java
+++ b/factory/src/test/resources/expected/SimpleClassNullableParametersFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2016 Google, Inc.
+ * Copyright 2016 Google LLC
*
* 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/factory/src/test/resources/expected/SimpleClassPassedDepsFactory.java b/factory/src/test/resources/expected/SimpleClassPassedDepsFactory.java
index 9a0740a8..3260c36e 100644
--- a/factory/src/test/resources/expected/SimpleClassPassedDepsFactory.java
+++ b/factory/src/test/resources/expected/SimpleClassPassedDepsFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/expected/SimpleClassProvidedDepsFactory.java b/factory/src/test/resources/expected/SimpleClassProvidedDepsFactory.java
index 2f43ed73..05d1e5ab 100644
--- a/factory/src/test/resources/expected/SimpleClassProvidedDepsFactory.java
+++ b/factory/src/test/resources/expected/SimpleClassProvidedDepsFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/expected/SimpleClassProvidedProviderDepsFactory.java b/factory/src/test/resources/expected/SimpleClassProvidedProviderDepsFactory.java
index 4804f0e7..aafdcec2 100644
--- a/factory/src/test/resources/expected/SimpleClassProvidedProviderDepsFactory.java
+++ b/factory/src/test/resources/expected/SimpleClassProvidedProviderDepsFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/expected/SimpleClassVarargsFactory.java b/factory/src/test/resources/expected/SimpleClassVarargsFactory.java
index 1a2b47a4..51c7f466 100644
--- a/factory/src/test/resources/expected/SimpleClassVarargsFactory.java
+++ b/factory/src/test/resources/expected/SimpleClassVarargsFactory.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2016 Google, Inc.
+ * Copyright 2016 Google LLC
*
* 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/factory/src/test/resources/good/CheckerFrameworkNullable.java b/factory/src/test/resources/good/CheckerFrameworkNullable.java
index abd91d1a..7f2a0fee 100644
--- a/factory/src/test/resources/good/CheckerFrameworkNullable.java
+++ b/factory/src/test/resources/good/CheckerFrameworkNullable.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2016 Google, Inc.
+ * Copyright 2016 Google LLC
*
* 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/factory/src/test/resources/good/ClassUsingQualifierWithArgs.java b/factory/src/test/resources/good/ClassUsingQualifierWithArgs.java
index 6f1ac02a..4a5b8c38 100644
--- a/factory/src/test/resources/good/ClassUsingQualifierWithArgs.java
+++ b/factory/src/test/resources/good/ClassUsingQualifierWithArgs.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2015 Google, Inc.
+ * Copyright 2015 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
diff --git a/factory/src/test/resources/good/ConstructorAnnotated.java b/factory/src/test/resources/good/ConstructorAnnotated.java
index 475ac7f9..fdc02f35 100644
--- a/factory/src/test/resources/good/ConstructorAnnotated.java
+++ b/factory/src/test/resources/good/ConstructorAnnotated.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/good/ConstructorAnnotatedNonFinal.java b/factory/src/test/resources/good/ConstructorAnnotatedNonFinal.java
index dba495d4..5bed1e60 100644
--- a/factory/src/test/resources/good/ConstructorAnnotatedNonFinal.java
+++ b/factory/src/test/resources/good/ConstructorAnnotatedNonFinal.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/good/CustomNullable.java b/factory/src/test/resources/good/CustomNullable.java
index ef3b0329..bdf2e7c0 100644
--- a/factory/src/test/resources/good/CustomNullable.java
+++ b/factory/src/test/resources/good/CustomNullable.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2016 Google, Inc.
+ * Copyright 2016 Google LLC
*
* 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/factory/src/test/resources/good/FactoryExtendingAbstractClass.java b/factory/src/test/resources/good/FactoryExtendingAbstractClass.java
index 20a50d40..5511e99e 100644
--- a/factory/src/test/resources/good/FactoryExtendingAbstractClass.java
+++ b/factory/src/test/resources/good/FactoryExtendingAbstractClass.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/good/FactoryExtendingAbstractClassWithConstructorParams.java b/factory/src/test/resources/good/FactoryExtendingAbstractClassWithConstructorParams.java
index 303fb3f0..98c5f667 100644
--- a/factory/src/test/resources/good/FactoryExtendingAbstractClassWithConstructorParams.java
+++ b/factory/src/test/resources/good/FactoryExtendingAbstractClassWithConstructorParams.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/good/FactoryExtendingAbstractClassWithMultipleConstructors.java b/factory/src/test/resources/good/FactoryExtendingAbstractClassWithMultipleConstructors.java
index e51e3d28..43e94ce1 100644
--- a/factory/src/test/resources/good/FactoryExtendingAbstractClassWithMultipleConstructors.java
+++ b/factory/src/test/resources/good/FactoryExtendingAbstractClassWithMultipleConstructors.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/good/FactoryImplementingCreateMethod.java b/factory/src/test/resources/good/FactoryImplementingCreateMethod.java
index a6fe00d2..db15eefe 100644
--- a/factory/src/test/resources/good/FactoryImplementingCreateMethod.java
+++ b/factory/src/test/resources/good/FactoryImplementingCreateMethod.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2016 Google, Inc.
+ * Copyright 2016 Google LLC
*
* 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/factory/src/test/resources/good/FactoryImplementingGenericInterfaceExtension.java b/factory/src/test/resources/good/FactoryImplementingGenericInterfaceExtension.java
index 43e294c0..0d0565fe 100644
--- a/factory/src/test/resources/good/FactoryImplementingGenericInterfaceExtension.java
+++ b/factory/src/test/resources/good/FactoryImplementingGenericInterfaceExtension.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/good/MixedDepsImplementingInterfaces.java b/factory/src/test/resources/good/MixedDepsImplementingInterfaces.java
index 80ed92a6..c7435edd 100644
--- a/factory/src/test/resources/good/MixedDepsImplementingInterfaces.java
+++ b/factory/src/test/resources/good/MixedDepsImplementingInterfaces.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/good/MultipleFactoriesConflictingParameterNames.java b/factory/src/test/resources/good/MultipleFactoriesConflictingParameterNames.java
index 47e6fa54..b6a31062 100644
--- a/factory/src/test/resources/good/MultipleFactoriesConflictingParameterNames.java
+++ b/factory/src/test/resources/good/MultipleFactoriesConflictingParameterNames.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2016 Google, Inc.
+ * Copyright 2016 Google LLC
*
* 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/factory/src/test/resources/good/MultipleFactoriesImplementingInterface.java b/factory/src/test/resources/good/MultipleFactoriesImplementingInterface.java
index b2cd1221..2eecf1ae 100644
--- a/factory/src/test/resources/good/MultipleFactoriesImplementingInterface.java
+++ b/factory/src/test/resources/good/MultipleFactoriesImplementingInterface.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2015 Google, Inc.
+ * Copyright 2015 Google LLC
*
* 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/factory/src/test/resources/good/MultipleProvidedParamsSameKey.java b/factory/src/test/resources/good/MultipleProvidedParamsSameKey.java
index 4c0c08d2..b338d344 100644
--- a/factory/src/test/resources/good/MultipleProvidedParamsSameKey.java
+++ b/factory/src/test/resources/good/MultipleProvidedParamsSameKey.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2016 Google, Inc.
+ * Copyright 2016 Google LLC
*
* 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/factory/src/test/resources/good/NestedClasses.java b/factory/src/test/resources/good/NestedClasses.java
index 827f9acb..93dbe845 100644
--- a/factory/src/test/resources/good/NestedClasses.java
+++ b/factory/src/test/resources/good/NestedClasses.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/good/OnlyPrimitives.java b/factory/src/test/resources/good/OnlyPrimitives.java
index 6ed62d76..ed391236 100644
--- a/factory/src/test/resources/good/OnlyPrimitives.java
+++ b/factory/src/test/resources/good/OnlyPrimitives.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2017 Google, Inc.
+ * Copyright 2017 Google LLC
*
* 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/factory/src/test/resources/good/ProviderArgumentToCreateMethod.java b/factory/src/test/resources/good/ProviderArgumentToCreateMethod.java
index 9472af6e..f1f37350 100644
--- a/factory/src/test/resources/good/ProviderArgumentToCreateMethod.java
+++ b/factory/src/test/resources/good/ProviderArgumentToCreateMethod.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2016 Google, Inc.
+ * Copyright 2016 Google LLC
*
* 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/factory/src/test/resources/good/PublicClass.java b/factory/src/test/resources/good/PublicClass.java
index 3ff36875..78da11d6 100644
--- a/factory/src/test/resources/good/PublicClass.java
+++ b/factory/src/test/resources/good/PublicClass.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/good/SimpleClass.java b/factory/src/test/resources/good/SimpleClass.java
index d736e7e1..227a4bb8 100644
--- a/factory/src/test/resources/good/SimpleClass.java
+++ b/factory/src/test/resources/good/SimpleClass.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/good/SimpleClassCustomName.java b/factory/src/test/resources/good/SimpleClassCustomName.java
index 25b7c304..f842c161 100644
--- a/factory/src/test/resources/good/SimpleClassCustomName.java
+++ b/factory/src/test/resources/good/SimpleClassCustomName.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/good/SimpleClassImplementingMarker.java b/factory/src/test/resources/good/SimpleClassImplementingMarker.java
index 50c3e7f8..24e3abc0 100644
--- a/factory/src/test/resources/good/SimpleClassImplementingMarker.java
+++ b/factory/src/test/resources/good/SimpleClassImplementingMarker.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 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
diff --git a/factory/src/test/resources/good/SimpleClassImplementingSimpleInterface.java b/factory/src/test/resources/good/SimpleClassImplementingSimpleInterface.java
index 4cc939df..ddc324c0 100644
--- a/factory/src/test/resources/good/SimpleClassImplementingSimpleInterface.java
+++ b/factory/src/test/resources/good/SimpleClassImplementingSimpleInterface.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/good/SimpleClassMixedDeps.java b/factory/src/test/resources/good/SimpleClassMixedDeps.java
index b6835bb4..05d627c7 100644
--- a/factory/src/test/resources/good/SimpleClassMixedDeps.java
+++ b/factory/src/test/resources/good/SimpleClassMixedDeps.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/good/SimpleClassNonFinal.java b/factory/src/test/resources/good/SimpleClassNonFinal.java
index d552ab98..a05d61bb 100644
--- a/factory/src/test/resources/good/SimpleClassNonFinal.java
+++ b/factory/src/test/resources/good/SimpleClassNonFinal.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/good/SimpleClassNullableParameters.java b/factory/src/test/resources/good/SimpleClassNullableParameters.java
index 9e2cc46b..dcaf618c 100644
--- a/factory/src/test/resources/good/SimpleClassNullableParameters.java
+++ b/factory/src/test/resources/good/SimpleClassNullableParameters.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2016 Google, Inc.
+ * Copyright 2016 Google LLC
*
* 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/factory/src/test/resources/good/SimpleClassPassedDeps.java b/factory/src/test/resources/good/SimpleClassPassedDeps.java
index e9839c13..b002fbfe 100644
--- a/factory/src/test/resources/good/SimpleClassPassedDeps.java
+++ b/factory/src/test/resources/good/SimpleClassPassedDeps.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/good/SimpleClassProvidedDeps.java b/factory/src/test/resources/good/SimpleClassProvidedDeps.java
index 55692836..ffcefd2a 100644
--- a/factory/src/test/resources/good/SimpleClassProvidedDeps.java
+++ b/factory/src/test/resources/good/SimpleClassProvidedDeps.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 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
diff --git a/factory/src/test/resources/good/SimpleClassProvidedProviderDeps.java b/factory/src/test/resources/good/SimpleClassProvidedProviderDeps.java
index 35beb3c3..ff013603 100644
--- a/factory/src/test/resources/good/SimpleClassProvidedProviderDeps.java
+++ b/factory/src/test/resources/good/SimpleClassProvidedProviderDeps.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 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
diff --git a/factory/src/test/resources/good/SimpleClassVarargs.java b/factory/src/test/resources/good/SimpleClassVarargs.java
index 125f35eb..57beb745 100644
--- a/factory/src/test/resources/good/SimpleClassVarargs.java
+++ b/factory/src/test/resources/good/SimpleClassVarargs.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2016 Google, Inc.
+ * Copyright 2016 Google LLC
*
* 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/factory/src/test/resources/support/AQualifier.java b/factory/src/test/resources/support/AQualifier.java
index 32228b3a..5836941a 100644
--- a/factory/src/test/resources/support/AQualifier.java
+++ b/factory/src/test/resources/support/AQualifier.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/support/BQualifier.java b/factory/src/test/resources/support/BQualifier.java
index 9f3991bf..0b7a1670 100644
--- a/factory/src/test/resources/support/BQualifier.java
+++ b/factory/src/test/resources/support/BQualifier.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2013 Google, Inc.
+ * Copyright 2013 Google LLC
*
* 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/factory/src/test/resources/support/QualifierWithArgs.java b/factory/src/test/resources/support/QualifierWithArgs.java
index 8458f09a..81e3f84b 100644
--- a/factory/src/test/resources/support/QualifierWithArgs.java
+++ b/factory/src/test/resources/support/QualifierWithArgs.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2015 Google, Inc.
+ * Copyright 2015 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.