Javadoc format and related polishing
(cherry picked from commit 9d0e62e)
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2014 the original author or authors.
|
||||
* Copyright 2002-2018 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.
|
||||
@@ -179,7 +179,7 @@ public abstract class AbstractTransactionStatus implements TransactionStatus {
|
||||
* This implementation delegates to a SavepointManager for the
|
||||
* underlying transaction, if possible.
|
||||
* @see #getSavepointManager()
|
||||
* @see org.springframework.transaction.SavepointManager
|
||||
* @see SavepointManager#createSavepoint()
|
||||
*/
|
||||
@Override
|
||||
public Object createSavepoint() throws TransactionException {
|
||||
@@ -189,9 +189,8 @@ public abstract class AbstractTransactionStatus implements TransactionStatus {
|
||||
/**
|
||||
* This implementation delegates to a SavepointManager for the
|
||||
* underlying transaction, if possible.
|
||||
* @throws org.springframework.transaction.NestedTransactionNotSupportedException
|
||||
* @see #getSavepointManager()
|
||||
* @see org.springframework.transaction.SavepointManager
|
||||
* @see SavepointManager#rollbackToSavepoint(Object)
|
||||
*/
|
||||
@Override
|
||||
public void rollbackToSavepoint(Object savepoint) throws TransactionException {
|
||||
@@ -202,7 +201,7 @@ public abstract class AbstractTransactionStatus implements TransactionStatus {
|
||||
* This implementation delegates to a SavepointManager for the
|
||||
* underlying transaction, if possible.
|
||||
* @see #getSavepointManager()
|
||||
* @see org.springframework.transaction.SavepointManager
|
||||
* @see SavepointManager#releaseSavepoint(Object)
|
||||
*/
|
||||
@Override
|
||||
public void releaseSavepoint(Object savepoint) throws TransactionException {
|
||||
|
||||
Reference in New Issue
Block a user