You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hudi.apache.org by si...@apache.org on 2023/04/07 18:44:45 UTC

[hudi] branch release-0.12.3 updated: Fixing build issues

This is an automated email from the ASF dual-hosted git repository.

sivabalan pushed a commit to branch release-0.12.3
in repository https://gitbox.apache.org/repos/asf/hudi.git


The following commit(s) were added to refs/heads/release-0.12.3 by this push:
     new d750beffbaa Fixing build issues
d750beffbaa is described below

commit d750beffbaaa5834640d2f518dde095f4aaf3d68
Author: sivabalan <n....@gmail.com>
AuthorDate: Fri Apr 7 11:44:29 2023 -0700

    Fixing build issues
---
 .../apache/hudi/common/util/VisibleForTesting.java | 25 ++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/hudi-common/src/main/java/org/apache/hudi/common/util/VisibleForTesting.java b/hudi-common/src/main/java/org/apache/hudi/common/util/VisibleForTesting.java
new file mode 100644
index 00000000000..c6e4e488f09
--- /dev/null
+++ b/hudi-common/src/main/java/org/apache/hudi/common/util/VisibleForTesting.java
@@ -0,0 +1,25 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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.
+ */
+
+package org.apache.hudi.common.util;
+
+/**
+ * Annotation designating a field or a method as visible for the testing purposes
+ */
+public @interface VisibleForTesting {
+}
\ No newline at end of file