Skip to content

Commit

Permalink
fix: apply spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
kenkoooo committed Jan 31, 2024
1 parent 7f70ac1 commit 93ac09c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/embulk/output/SnowflakeOutputPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ protected JdbcOutputConnector getConnector(PluginTask task, boolean retryableMet
props.setProperty("warehouse", t.getWarehouse());
props.setProperty("db", t.getDatabase());
props.setProperty("schema", t.getSchema());
if(!t.getRole().isEmpty()) {
if (!t.getRole().isEmpty()) {
props.setProperty("role", t.getRole());
}

Expand Down

0 comments on commit 93ac09c

Please sign in to comment.