From 526aa72ce8c09d10129c4d51bda0decddd99d56a Mon Sep 17 00:00:00 2001 From: cpovirk Date: Thu, 18 Jul 2024 13:25:12 -0700 Subject: [PATCH] Restore `module-info`. PiperOrigin-RevId: 653734294 --- annotations/src/main/java/module-info.java | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 annotations/src/main/java/module-info.java diff --git a/annotations/src/main/java/module-info.java b/annotations/src/main/java/module-info.java new file mode 100644 index 00000000000..3dccd229104 --- /dev/null +++ b/annotations/src/main/java/module-info.java @@ -0,0 +1,22 @@ +/* + * Copyright 2015 The Error Prone Authors. + * + * 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 + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +open module com.google.errorprone.annotations { + requires java.compiler; + + exports com.google.errorprone.annotations; + exports com.google.errorprone.annotations.concurrent; +}