Skip to content

Commit

Permalink
remove @Value.Lazy
Browse files Browse the repository at this point in the history
  • Loading branch information
nastra committed Jun 13, 2023
1 parent 4b38968 commit 18fd97d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions core/src/main/java/org/apache/iceberg/view/ViewMetadata.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ default ViewVersion version(int versionId) {
return versionsById().get(versionId);
}

@Value.Lazy
default ViewVersion currentVersion() {
return versionsById().get(currentVersionId());
}
Expand All @@ -76,7 +75,6 @@ default Map<Integer, Schema> schemasById() {
return builder.build();
}

@Value.Lazy
default Schema schema() {
return schemasById().get(currentSchemaId());
}
Expand Down

0 comments on commit 18fd97d

Please sign in to comment.