Skip to content

Commit ad3adac

Browse files
author
Iain McGinniss
committed
Remove choreographer package
Change-Id: I34d1672301a24b9118aac1189c933c329585648f
1 parent 45cfa8c commit ad3adac

26 files changed

+90
-272
lines changed

auth/src/main/java/com/firebase/ui/auth/AuthUI.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424

2525
import com.firebase.ui.auth.ui.FlowParameters;
2626
import com.firebase.ui.auth.util.CredentialsApiHelper;
27-
import com.firebase.ui.auth.choreographer.idp.provider.FacebookProvider;
28-
import com.firebase.ui.auth.choreographer.idp.provider.GoogleProvider;
29-
import com.firebase.ui.auth.choreographer.idp.provider.IDPProviderParcel;
27+
import com.firebase.ui.auth.provider.FacebookProvider;
28+
import com.firebase.ui.auth.provider.GoogleProvider;
29+
import com.firebase.ui.auth.provider.IDPProviderParcel;
3030
import com.firebase.ui.auth.ui.credentials.ChooseAccountActivity;
3131
import com.google.android.gms.common.api.Status;
3232
import com.google.android.gms.tasks.Continuation;

auth/src/main/java/com/firebase/ui/auth/choreographer/Action.java

Lines changed: 0 additions & 106 deletions
This file was deleted.

auth/src/main/java/com/firebase/ui/auth/choreographer/Controller.java

Lines changed: 0 additions & 24 deletions
This file was deleted.

auth/src/main/java/com/firebase/ui/auth/choreographer/Result.java

Lines changed: 0 additions & 43 deletions
This file was deleted.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* limitations under the License.
1313
*/
1414

15-
package com.firebase.ui.auth.choreographer.idp.provider;
15+
package com.firebase.ui.auth.provider;
1616

1717
import android.app.Activity;
1818
import android.content.Context;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* limitations under the License.
1313
*/
1414

15-
package com.firebase.ui.auth.choreographer.idp.provider;
15+
package com.firebase.ui.auth.provider;
1616

1717
import android.app.Activity;
1818
import android.content.Context;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* limitations under the License.
1313
*/
1414

15-
package com.firebase.ui.auth.choreographer.idp.provider;
15+
package com.firebase.ui.auth.provider;
1616

1717
import android.app.Activity;
1818
import android.content.Context;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* limitations under the License.
1313
*/
1414

15-
package com.firebase.ui.auth.choreographer.idp.provider;
15+
package com.firebase.ui.auth.provider;
1616

1717
import android.os.Bundle;
1818
import android.os.Parcel;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* limitations under the License.
1313
*/
1414

15-
package com.firebase.ui.auth.choreographer.idp.provider;
15+
package com.firebase.ui.auth.provider;
1616

1717
import android.os.Bundle;
1818
import android.os.Parcel;

auth/src/main/java/com/firebase/ui/auth/ui/AcquireEmailHelper.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
import android.support.annotation.NonNull;
1919

2020
import com.firebase.ui.auth.R;
21-
import com.firebase.ui.auth.choreographer.ControllerConstants;
2221
import com.firebase.ui.auth.ui.account_link.WelcomeBackIDPPrompt;
2322
import com.firebase.ui.auth.ui.email.RegisterEmailActivity;
2423
import com.firebase.ui.auth.ui.email.SignInActivity;
@@ -94,7 +93,7 @@ private void startEmailHandler(String email, List<String> providers) {
9493

9594
Intent signInIntent = new Intent(
9695
mActivityHelper.getApplicationContext(), SignInActivity.class);
97-
signInIntent.putExtra(ControllerConstants.EXTRA_EMAIL, email);
96+
signInIntent.putExtra(ExtraConstants.EXTRA_EMAIL, email);
9897
mActivityHelper.startActivityForResult(signInIntent, RC_SIGN_IN);
9998
return;
10099
}

0 commit comments

Comments
 (0)