#1154 - Remove deprecated TxCallable and TxRunnable - migrate to use Callable and Runnable

This commit is contained in:
rob bygrave
2017-10-05 01:24:53 +13:00
parent 16b8f5da35
commit 88a13c5416
4 changed files with 0 additions and 125 deletions
-16
View File
@@ -1241,14 +1241,6 @@ public final class Ebean {
return serverMgr.getDefaultServer().executeCall(scope, c);
}
/**
* Deprecated - please migrate to executeCall().
*/
@Deprecated
public static <T> T execute(TxScope scope, TxCallable<T> c) {
return serverMgr.getDefaultServer().executeCall(scope, c);
}
/**
* Execute a Callable in a Transaction with the default scope.
* <p>
@@ -1282,14 +1274,6 @@ public final class Ebean {
return serverMgr.getDefaultServer().executeCall(c);
}
/**
* Deprecated - please migrate to executeCall().
*/
@Deprecated
public static <T> T execute(TxCallable<T> c) {
return serverMgr.getDefaultServer().execute(c);
}
/**
* Inform Ebean that tables have been modified externally. These could be the
* result of from calling a stored procedure, other JDBC calls or external