This is an automated email from the ASF dual-hosted git repository.
timbrown pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-xtable.git
The following commit(s) were added to refs/heads/main by this push:
new 072a1f84 Remove redundant modifier for interface members
072a1f84 is described below
commit 072a1f84dbf4014f9800e6ff8e1a04d767efd7ee
Author: daragu <[email protected]>
AuthorDate: Thu Jul 11 22:26:23 2024 +0800
Remove redundant modifier for interface members
---
README.md | 2 +-
.../src/main/java/org/apache/xtable/conversion/HudiSourceConfig.java | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index 8294e0ef..a150af49 100644
--- a/README.md
+++ b/README.md
@@ -35,7 +35,7 @@ future.
1. Use Java11 for building the project. If you are using some other java
version, you can use [jenv](https://github.com/jenv/jenv) to use multiple java
versions locally.
2. Build the project using `mvn clean package`. Use `mvn clean package
-DskipTests` to skip tests while building.
3. Use `mvn clean test` or `mvn test` to run all unit tests. If you need to
run only a specific test you can do this
- by something like `mvn test -Dtest=TestDeltaSync -pl core`.
+ by something like `mvn test -Dtest=TestDeltaSync -pl xtable-core`.
4. Similarly, use `mvn clean verify` or `mvn verify` to run integration tests.
# Style guide
diff --git
a/xtable-api/src/main/java/org/apache/xtable/conversion/HudiSourceConfig.java
b/xtable-api/src/main/java/org/apache/xtable/conversion/HudiSourceConfig.java
index 1d59466a..6edf356f 100644
---
a/xtable-api/src/main/java/org/apache/xtable/conversion/HudiSourceConfig.java
+++
b/xtable-api/src/main/java/org/apache/xtable/conversion/HudiSourceConfig.java
@@ -21,7 +21,7 @@ package org.apache.xtable.conversion;
import org.apache.xtable.spi.extractor.SourcePartitionSpecExtractor;
public interface HudiSourceConfig {
- public String getPartitionSpecExtractorClass();
+ String getPartitionSpecExtractorClass();
SourcePartitionSpecExtractor loadSourcePartitionSpecExtractor();
}