mirror of
https://github.com/google/nomulus.git
synced 2025-05-21 03:39:36 +02:00
Resolve remaining TODO(shicong) (#932)
This commit is contained in:
parent
fbad52223c
commit
fcda5d73de
2 changed files with 3 additions and 3 deletions
|
@ -175,7 +175,7 @@ public class Address extends ImmutableObject implements Jsonifiable {
|
|||
* entity from Datastore.
|
||||
*
|
||||
* <p>This callback method is used by Objectify to set streetLine[1,2,3] fields as they are not
|
||||
* persisted in the Datastore. TODO(shicong): Delete this method after database migration.
|
||||
* persisted in the Datastore.
|
||||
*/
|
||||
void onLoad(@AlsoLoad("street") List<String> street) {
|
||||
mapStreetListToIndividualFields(street);
|
||||
|
|
|
@ -116,8 +116,6 @@ public class JpaTransactionManagerImpl implements JpaTransactionManager {
|
|||
|
||||
@Override
|
||||
public <T> T transact(Supplier<T> work) {
|
||||
// TODO(shicong): Investigate removing transactNew functionality after migration as it may
|
||||
// be same as this one.
|
||||
return retrier.callWithRetry(
|
||||
() -> {
|
||||
if (inTransaction()) {
|
||||
|
@ -197,6 +195,8 @@ public class JpaTransactionManagerImpl implements JpaTransactionManager {
|
|||
});
|
||||
}
|
||||
|
||||
// TODO(b/177674699): Remove all transactNew methods as they are same as transact after the
|
||||
// database migration.
|
||||
@Override
|
||||
public <T> T transactNew(Supplier<T> work) {
|
||||
return transact(work);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue