From a4912dd5b1c5288fb7632fec649295c97ed48d78 Mon Sep 17 00:00:00 2001 From: Sam Brannen <104798+sbrannen@users.noreply.github.com> Date: Tue, 11 Jun 2024 16:35:13 +0200 Subject: [PATCH] Remove obsolete field See gh-32992 --- .../jdbc/datasource/JdbcTransactionObjectSupport.java | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/spring-jdbc/src/main/java/org/springframework/jdbc/datasource/JdbcTransactionObjectSupport.java b/spring-jdbc/src/main/java/org/springframework/jdbc/datasource/JdbcTransactionObjectSupport.java index e1d98f1310a..1a266e2fc0c 100644 --- a/spring-jdbc/src/main/java/org/springframework/jdbc/datasource/JdbcTransactionObjectSupport.java +++ b/spring-jdbc/src/main/java/org/springframework/jdbc/datasource/JdbcTransactionObjectSupport.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2023 the original author or authors. + * Copyright 2002-2024 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -19,9 +19,6 @@ package org.springframework.jdbc.datasource; import java.sql.SQLException; import java.sql.Savepoint; -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; - import org.springframework.lang.Nullable; import org.springframework.transaction.CannotCreateTransactionException; import org.springframework.transaction.NestedTransactionNotSupportedException; @@ -48,9 +45,6 @@ import org.springframework.util.Assert; */ public abstract class JdbcTransactionObjectSupport implements SavepointManager, SmartTransactionObject { - private static final Log logger = LogFactory.getLog(JdbcTransactionObjectSupport.class); - - @Nullable private ConnectionHolder connectionHolder;