Skip to content

Commit

Permalink
Made the right changes to README
Browse files Browse the repository at this point in the history
  • Loading branch information
koushikr committed Nov 19, 2024
1 parent 33ddd01 commit 8b445a9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Leia is a governance and metadata framework aimed at meeting compliance requirem
<dependency>
<groupId>com.grookage.leia</groupId>
<artifactId>leia-bom</artifactId>
<versio>0.0.1-RC4</version>
<versio>0.0.1-RC5</version>
</dependency>
```

Expand All @@ -50,8 +50,8 @@ Leia is a governance and metadata framework aimed at meeting compliance requirem
new LeiaElasticBundle<TestConfiguration, SchemaUpdater>() {
@Override
protected SchemaUpdaterResolver<SchemaUpdater> userResolver(TestConfiguration configuration) {
return null;
protected Supplier<SchemaUpdaterResolver<SchemaUpdater>> userResolver(TestConfiguration configuration) {
return () -> new DefaultResolver();
}
@Override
Expand All @@ -60,8 +60,8 @@ Leia is a governance and metadata framework aimed at meeting compliance requirem
}
@Override
protected VersionIDGenerator getVersionIDGenerator() {
return null;
protected Supplier<VersionIDGenerator> getVersionIDGenerator() {
return () -> new DefaultVersionGenerator();
}
@Override
Expand Down

0 comments on commit 8b445a9

Please sign in to comment.