Skip to content

Commit

Permalink
Polishing.
Browse files Browse the repository at this point in the history
Add author tags.

See #1721
Original pull request #1722
  • Loading branch information
schauder committed Apr 23, 2024
1 parent 49ddfac commit dafe448
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
* versa.
*
* @author Jens Schauder
* @author Mark Paluch
* @since 1.1
*/
public interface JdbcConverter extends RelationalConverter {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
* @author Moises Cisneros
* @author Hebert Coelho
* @author Diego Krupitza
* @author Mark Paluch
*/
public class JdbcQueryMethod extends QueryMethod {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ public SqlIdentifier transform(UnaryOperator<String> transformationFunction) {
@Override
public String toSql(IdentifierProcessing processing) {

// using a local copy of volatile this.sqlName to ensure thread safety.
CachedSqlName sqlName = this.sqlName;
if (sqlName == null || sqlName.processing != processing) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ public SqlIdentifier transform(UnaryOperator<String> transformationFunction) {
@Override
public String toSql(IdentifierProcessing processing) {

// using a local copy of volatile this.sqlName to ensure thread safety.
CachedSqlName sqlName = this.sqlName;
if (sqlName == null || sqlName.processing != processing) {

Expand Down

0 comments on commit dafe448

Please sign in to comment.