Skip to content

Commit

Permalink
Fix Checkstyle violation
Browse files Browse the repository at this point in the history
See gh-gh-24358
  • Loading branch information
sbrannen committed Jan 15, 2020
1 parent f527ca7 commit 734db23
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ protected ParsedSql getParsedSql(String sql) {
return NamedParameterUtils.parseSqlStatement(sql);
}
synchronized (this.parsedSqlCache) {
return parsedSqlCache.computeIfAbsent(sql, NamedParameterUtils::parseSqlStatement);
return this.parsedSqlCache.computeIfAbsent(sql, NamedParameterUtils::parseSqlStatement);
}
}

Expand Down

0 comments on commit 734db23

Please sign in to comment.