@@ -205,7 +205,7 @@ public void testGetUserByPhoneNumberWithNotFoundError() throws Exception {
205
205
206
206
@ Test
207
207
public void testGetUsersExceeds100 () throws Exception {
208
- FirebaseApp .initializeApp (new FirebaseOptions .Builder ()
208
+ FirebaseApp .initializeApp (FirebaseOptions .builder ()
209
209
.setCredentials (credentials )
210
210
.build ());
211
211
List <UserIdentifier > identifiers = new ArrayList <>();
@@ -223,7 +223,7 @@ public void testGetUsersExceeds100() throws Exception {
223
223
224
224
@ Test
225
225
public void testGetUsersNull () throws Exception {
226
- FirebaseApp .initializeApp (new FirebaseOptions .Builder ()
226
+ FirebaseApp .initializeApp (FirebaseOptions .builder ()
227
227
.setCredentials (credentials )
228
228
.build ());
229
229
try {
@@ -458,7 +458,7 @@ public void testDeleteUser() throws Exception {
458
458
459
459
@ Test
460
460
public void testDeleteUsersExceeds1000 () {
461
- FirebaseApp .initializeApp (new FirebaseOptions .Builder ()
461
+ FirebaseApp .initializeApp (FirebaseOptions .builder ()
462
462
.setCredentials (credentials )
463
463
.build ());
464
464
List <String > ids = new ArrayList <>();
@@ -475,7 +475,7 @@ public void testDeleteUsersExceeds1000() {
475
475
476
476
@ Test
477
477
public void testDeleteUsersInvalidId () {
478
- FirebaseApp .initializeApp (new FirebaseOptions .Builder ()
478
+ FirebaseApp .initializeApp (FirebaseOptions .builder ()
479
479
.setCredentials (credentials )
480
480
.build ());
481
481
try {
@@ -2681,7 +2681,7 @@ public void testTenantAwareDeleteSamlProviderConfig() throws Exception {
2681
2681
2682
2682
private static TestResponseInterceptor initializeAppForUserManagementWithStatusCode (
2683
2683
int statusCode , String response ) {
2684
- FirebaseApp .initializeApp (new FirebaseOptions .Builder ()
2684
+ FirebaseApp .initializeApp (FirebaseOptions .builder ()
2685
2685
.setCredentials (credentials )
2686
2686
.setHttpTransport (
2687
2687
new MockHttpTransport .Builder ().setLowLevelHttpResponse (
@@ -2717,7 +2717,7 @@ private static void initializeAppWithResponses(String... responses) {
2717
2717
mocks .add (new MockLowLevelHttpResponse ().setContent (response ));
2718
2718
}
2719
2719
MockHttpTransport transport = new MultiRequestMockHttpTransport (mocks );
2720
- FirebaseApp .initializeApp (new FirebaseOptions .Builder ()
2720
+ FirebaseApp .initializeApp (FirebaseOptions .builder ()
2721
2721
.setCredentials (credentials )
2722
2722
.setHttpTransport (transport )
2723
2723
.setProjectId ("test-project-id" )
@@ -2735,7 +2735,7 @@ private static FirebaseAuth getRetryDisabledAuth(MockLowLevelHttpResponse respon
2735
2735
final MockHttpTransport transport = new MockHttpTransport .Builder ()
2736
2736
.setLowLevelHttpResponse (response )
2737
2737
.build ();
2738
- final FirebaseApp app = FirebaseApp .initializeApp (new FirebaseOptions .Builder ()
2738
+ final FirebaseApp app = FirebaseApp .initializeApp (FirebaseOptions .builder ()
2739
2739
.setCredentials (credentials )
2740
2740
.setProjectId ("test-project-id" )
2741
2741
.setHttpTransport (transport )
0 commit comments