This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git
The following commit(s) were added to refs/heads/master by this push:
new b774dca61f [iceberg] delete unnecessary class (#5890)
b774dca61f is described below
commit b774dca61f952ebda909096ac9ff32e323bf517f
Author: LsomeYeah <[email protected]>
AuthorDate: Tue Jul 15 11:15:14 2025 +0800
[iceberg] delete unnecessary class (#5890)
---
.../org/apache/iceberg/IcebergSnapshotRefType.java | 30 ----------------------
1 file changed, 30 deletions(-)
diff --git
a/paimon-iceberg/src/main/java/org/apache/iceberg/IcebergSnapshotRefType.java
b/paimon-iceberg/src/main/java/org/apache/iceberg/IcebergSnapshotRefType.java
deleted file mode 100644
index 02343a1173..0000000000
---
a/paimon-iceberg/src/main/java/org/apache/iceberg/IcebergSnapshotRefType.java
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * 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.iceberg;
-
-/** doc. */
-public class IcebergSnapshotRefType {
- public static SnapshotRefType branchType() {
- return SnapshotRefType.BRANCH;
- }
-
- public static SnapshotRefType tagType() {
- return SnapshotRefType.TAG;
- }
-}