mirror of
https://github.com/google/nomulus.git
synced 2025-05-22 20:29:36 +02:00
Fix Java 7 generic type inference issue in SyncGroupMembersAction
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=141485405
This commit is contained in:
parent
bf13c2a131
commit
58b7babc2b
1 changed files with 1 additions and 1 deletions
|
@ -140,7 +140,7 @@ public final class SyncGroupMembersAction implements Runnable {
|
||||||
syncRegistrarContacts(registrar);
|
syncRegistrarContacts(registrar);
|
||||||
return null;
|
return null;
|
||||||
}}, RuntimeException.class);
|
}}, RuntimeException.class);
|
||||||
resultsBuilder.put(registrar, Optional.absent());
|
resultsBuilder.put(registrar, Optional.<Throwable>absent());
|
||||||
} catch (Throwable e) {
|
} catch (Throwable e) {
|
||||||
logger.severe(e, e.getMessage());
|
logger.severe(e, e.getMessage());
|
||||||
resultsBuilder.put(registrar, Optional.of(e));
|
resultsBuilder.put(registrar, Optional.of(e));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue