Skip to content

Commit e7415da

Browse files
committed
Make verifySessionCookieOp private.
1 parent c90a7d5 commit e7415da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ public ApiFuture<FirebaseToken> verifySessionCookieAsync(String cookie, boolean
190190
return verifySessionCookieOp(cookie, checkRevoked).callAsync(getFirebaseApp());
191191
}
192192

193-
protected CallableOperation<FirebaseToken, FirebaseAuthException> verifySessionCookieOp(
193+
private CallableOperation<FirebaseToken, FirebaseAuthException> verifySessionCookieOp(
194194
final String cookie, final boolean checkRevoked) {
195195
checkNotDestroyed();
196196
checkArgument(!Strings.isNullOrEmpty(cookie), "Session cookie must not be null or empty");

0 commit comments

Comments
 (0)