File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -81,10 +81,10 @@ Please fill out either the individual or corporate Contributor License Agreement
81
81
(CLA).
82
82
83
83
* If you are an individual writing original source code and you're sure you
84
- own the intellectual property, then you'll need to sign an
84
+ own the intellectual property, then you'll need to sign an
85
85
[ individual CLA] ( https://developers.google.com/open-source/cla/individual ) .
86
86
* If you work for a company that wants to allow you to contribute your work,
87
- then you'll need to sign a
87
+ then you'll need to sign a
88
88
[ corporate CLA] ( https://developers.google.com/open-source/cla/corporate ) .
89
89
90
90
Follow either of the two links above to access the appropriate CLA and
@@ -101,4 +101,4 @@ accept your pull requests.
101
101
1 . Ensure that your code adheres to the existing style of the library to which
102
102
you are contributing.
103
103
1 . Ensure that your code has an appropriate set of unit tests which all pass.
104
- 1 . Submit a pull request and cc @puf or @mcdonamp
104
+ 1 . Submit a pull request and cc @puf or @mcdonamp
Original file line number Diff line number Diff line change @@ -211,12 +211,12 @@ public void onClick(View v) {
211
211
if (v.getId() == R.id.sign_out) {
212
212
AuthUI.getInstance(this)
213
213
.signOut(this)
214
- .addOnCompleteListener(new OnCompleteListener<AuthResult >() {
215
- public void onComplete(@NonNull Task<AuthResult > task) {
214
+ .addOnCompleteListener(new OnCompleteListener<Void >() {
215
+ public void onComplete(@NonNull Task<Void > task) {
216
216
// user is now signed out
217
217
startActivity(new Intent(MyActivity.this, SignInActivity.class));
218
218
finish();
219
- });
219
+ }
220
220
});
221
221
}
222
222
}
You can’t perform that action at this time.
0 commit comments