Skip to content

Commit d341624

Browse files
committed
Drop JDO support
Issue: SPR-14130
1 parent 2b3445d commit d341624

30 files changed

+55
-4358
lines changed

spring-jdbc/src/main/java/org/springframework/jdbc/datasource/ConnectionHandle.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2014 the original author or authors.
2+
* Copyright 2002-2016 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -20,14 +20,12 @@
2020

2121
/**
2222
* Simple interface to be implemented by handles for a JDBC Connection.
23-
* Used by JpaDialect and JdoDialect, for example.
23+
* Used by JpaDialect, for example.
2424
*
2525
* @author Juergen Hoeller
2626
* @since 1.1
2727
* @see SimpleConnectionHandle
2828
* @see ConnectionHolder
29-
* @see org.springframework.orm.jdo.JpaDialect#getJdbcConnection
30-
* @see org.springframework.orm.jdo.JdoDialect#getJdbcConnection
3129
*/
3230
public interface ConnectionHandle {
3331

spring-jdbc/src/main/java/org/springframework/jdbc/datasource/ConnectionHolder.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2012 the original author or authors.
2+
* Copyright 2002-2016 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -182,9 +182,7 @@ public Savepoint createSavepoint() throws SQLException {
182182
* <p>This is necessary for ConnectionHandles that expect "Connection borrowing",
183183
* where each returned Connection is only temporarily leased and needs to be
184184
* returned once the data operation is done, to make the Connection available
185-
* for other operations within the same transaction. This is the case with
186-
* JDO 2.0 DataStoreConnections, for example.
187-
* @see org.springframework.orm.jdo.DefaultJdoDialect#getJdbcConnection
185+
* for other operations within the same transaction.
188186
*/
189187
@Override
190188
public void released() {

spring-orm/src/main/java/org/springframework/orm/jdo/DefaultJdoDialect.java

Lines changed: 0 additions & 272 deletions
This file was deleted.

0 commit comments

Comments
 (0)