Skip to content

Commit

Permalink
Remove redundant modifier for interface members
Browse files Browse the repository at this point in the history
  • Loading branch information
daragu authored and the-other-tim-brown committed Jul 20, 2024
1 parent 7ab718c commit 072a1f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import org.apache.xtable.spi.extractor.SourcePartitionSpecExtractor;

public interface HudiSourceConfig {
public String getPartitionSpecExtractorClass();
String getPartitionSpecExtractorClass();

SourcePartitionSpecExtractor loadSourcePartitionSpecExtractor();
}

0 comments on commit 072a1f8

Please sign in to comment.