Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
anotherdev committed Mar 19, 2020
1 parent 2afa760 commit 6cb239a
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ public boolean onCreate() {
final String googleApiKey = appContext.getString(R.string.google_api_key);
Timber.i("google_api_key: %s", googleApiKey);

Data.from(appContext).getApiKey().set(googleApiKey);
Data.from(appContext)
.getApiKey()
.set(googleApiKey);
return true;
} catch (Exception e) {
Log.e(InternalFirebaseAuthRestInitProvider.class.getSimpleName(), e.getMessage(), e);
Expand Down

0 comments on commit 6cb239a

Please sign in to comment.