Skip to content
This repository has been archived by the owner on May 31, 2023. It is now read-only.

Commit

Permalink
Fixup - refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesMcIntosh committed Nov 12, 2022
1 parent bebb39d commit fe8bd0d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public void onMethodCall(MethodCall call, MethodChannel.Result result) {
int width = call.argument("width");
int height = call.argument("height");

cropImage(result, String fileName, originX, originY, width, height);
cropImage(result, fileName, originX, originY, width, height);
} else if (call.method.equals("getPlatformVersion")) {
result.success("Android " + android.os.Build.VERSION.RELEASE);
} else {
Expand Down

0 comments on commit fe8bd0d

Please sign in to comment.