Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhumanmod committed Nov 22, 2024
1 parent d9cb5fd commit c8dde9e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ public class TableSyncMetadata {

/** Property name for the XTABLE metadata in the table metadata/properties */
public static final String XTABLE_METADATA = "XTABLE_METADATA";

public static final String XTABLE_SOURCE_IDENTIFIER = "XTABLE_SOURCE_IDENTIFIER";

Instant lastInstantSynced;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,8 @@ public Optional<String> getTargetCommitIdentifier(String sourceIdentifier) {
continue;
}

Option<String> curSourceIdentifierOption = tags.get().get(TableSyncMetadata.XTABLE_SOURCE_IDENTIFIER);
Option<String> curSourceIdentifierOption =
tags.get().get(TableSyncMetadata.XTABLE_SOURCE_IDENTIFIER);
if (curSourceIdentifierOption.isEmpty()) {
continue;
}
Expand Down

0 comments on commit c8dde9e

Please sign in to comment.