We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6655b3c commit 05b678cCopy full SHA for 05b678c
android/src/main/java/com/instabug/instabugflutter/InstabugFlutterPlugin.java
@@ -53,7 +53,7 @@ public static void registerWith(Registrar registrar) {
53
public void onMethodCall(MethodCall call, Result result) {
54
Method[] methods = this.getClass().getMethods();
55
boolean isImplemented = false;
56
- for(Method method : methods){
+ for (Method method : methods) {
57
if (call.method.equals(method.getName())) {
58
isImplemented = true;
59
ArrayList<Object> tempParamValues = new ArrayList<>();
0 commit comments