Skip to content

Commit b38cadc

Browse files
committed
Make several Op methods private.
1 parent 5b60738 commit b38cadc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/com/google/firebase/auth/AbstractFirebaseAuth.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ public ApiFuture<String> createCustomTokenAsync(
162162
return createCustomTokenOp(uid, developerClaims).callAsync(firebaseApp);
163163
}
164164

165-
protected CallableOperation<String, FirebaseAuthException> createCustomTokenOp(
165+
private CallableOperation<String, FirebaseAuthException> createCustomTokenOp(
166166
final String uid, final Map<String, Object> developerClaims) {
167167
checkNotDestroyed();
168168
checkArgument(!Strings.isNullOrEmpty(uid), "uid must not be null or empty");
@@ -211,7 +211,7 @@ public ApiFuture<String> createSessionCookieAsync(
211211
return createSessionCookieOp(idToken, options).callAsync(firebaseApp);
212212
}
213213

214-
protected CallableOperation<String, FirebaseAuthException> createSessionCookieOp(
214+
private CallableOperation<String, FirebaseAuthException> createSessionCookieOp(
215215
final String idToken, final SessionCookieOptions options) {
216216
checkNotDestroyed();
217217
checkArgument(!Strings.isNullOrEmpty(idToken), "idToken must not be null or empty");
@@ -283,7 +283,7 @@ public ApiFuture<FirebaseToken> verifySessionCookieAsync(String cookie, boolean
283283
return verifySessionCookieOp(cookie, checkRevoked).callAsync(firebaseApp);
284284
}
285285

286-
protected CallableOperation<FirebaseToken, FirebaseAuthException> verifySessionCookieOp(
286+
private CallableOperation<FirebaseToken, FirebaseAuthException> verifySessionCookieOp(
287287
final String cookie, final boolean checkRevoked) {
288288
checkNotDestroyed();
289289
checkArgument(!Strings.isNullOrEmpty(cookie), "Session cookie must not be null or empty");
@@ -383,7 +383,7 @@ public ApiFuture<FirebaseToken> verifyIdTokenAsync(@NonNull String idToken) {
383383
return verifyIdTokenOp(idToken, checkRevoked).callAsync(firebaseApp);
384384
}
385385

386-
protected CallableOperation<FirebaseToken, FirebaseAuthException> verifyIdTokenOp(
386+
private CallableOperation<FirebaseToken, FirebaseAuthException> verifyIdTokenOp(
387387
final String idToken, final boolean checkRevoked) {
388388
checkNotDestroyed();
389389
checkArgument(!Strings.isNullOrEmpty(idToken), "ID token must not be null or empty");

0 commit comments

Comments
 (0)