Skip to content

Commit

Permalink
Fix create method (this method is not used at runtime because this cl…
Browse files Browse the repository at this point in the history
…ass gets replaced with the OTel version) (#7451)
  • Loading branch information
mcculls authored Aug 16, 2024
1 parent 4f97ed1 commit d5cba79
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public final class SqlStatementInfo {
private final String table;

public static SqlStatementInfo create(String statement, String operation, String table) {
return null;
return new SqlStatementInfo(statement, operation, table);
}

private SqlStatementInfo(String statement, String operation, String table) {
Expand Down

0 comments on commit d5cba79

Please sign in to comment.