mirror of
https://github.com/google/nomulus
synced 2026-07-31 04:22:47 +00:00
Remove unnecessary "throws" declarations
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=201058582
This commit is contained in:
@@ -45,7 +45,7 @@ public class UpdateAutoTimestampTest {
|
||||
}
|
||||
|
||||
@Before
|
||||
public void before() throws Exception {
|
||||
public void before() {
|
||||
ObjectifyService.register(TestObject.class);
|
||||
}
|
||||
|
||||
@@ -54,7 +54,7 @@ public class UpdateAutoTimestampTest {
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testSaveSetsTime() throws Exception {
|
||||
public void testSaveSetsTime() {
|
||||
DateTime transactionTime =
|
||||
ofy()
|
||||
.transact(
|
||||
@@ -69,7 +69,7 @@ public class UpdateAutoTimestampTest {
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testResavingOverwritesOriginalTime() throws Exception {
|
||||
public void testResavingOverwritesOriginalTime() {
|
||||
DateTime transactionTime =
|
||||
ofy()
|
||||
.transact(
|
||||
|
||||
Reference in New Issue
Block a user