Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
[pathprovider] Fix fall through bug
  • Loading branch information
mehmetf committed Aug 20, 2019
commit 9ab300def05603d52a00e17323d3d78055853145
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ public void onMethodCall(MethodCall call, Result result) {
break;
case "getApplicationSupportDirectory":
result.success(getApplicationSupportDirectory());
break;
default:
result.notImplemented();
}
Expand Down