Skip to content
This repository has been archived by the owner on Oct 19, 2022. It is now read-only.

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Boehrsi committed Jun 3, 2020
1 parent 25b0c58 commit 6b1835b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public class MainActivity extends FlutterActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
cacheDateFromPlatform(getIntent());
cacheDataFromPlatform(getIntent());
}

@Override
Expand All @@ -80,7 +80,7 @@ public void configureFlutterEngine(@NonNull FlutterEngine flutterEngine) {
@Override
protected void onNewIntent(@NonNull Intent intent) {
super.onNewIntent(intent);
cacheDateFromPlatform(intent);
cacheDataFromPlatform(intent);
}

private void setupSharingMethodChannel(DartExecutor dartExecutor) {
Expand Down Expand Up @@ -120,7 +120,7 @@ private void setupSecurityMethodChannel(DartExecutor dartExecutor) {
});
}

private void cacheDateFromPlatform(Intent intent) {
private void cacheDataFromPlatform(Intent intent) {
String action = intent.getAction();
String type = intent.getType();
Uri data = intent.getData();
Expand Down

0 comments on commit 6b1835b

Please sign in to comment.