Skip to content

Commit 4379ae3

Browse files
HeshamMegidalyezz
andauthored
📝 Linting
Co-Authored-By: alyezz <[email protected]>
1 parent 05b678c commit 4379ae3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

android/src/main/java/com/instabug/instabugflutter/InstabugFlutterPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public void onMethodCall(MethodCall call, Result result) {
5858
isImplemented = true;
5959
ArrayList<Object> tempParamValues = new ArrayList<>();
6060
HashMap map = (HashMap<String, String>)call.arguments;
61-
Iterator it = map.entrySet().iterator();
61+
Iterator iterator = map.entrySet().iterator();
6262
while (it.hasNext()) {
6363
Map.Entry pair = (Map.Entry)it.next();
6464
tempParamValues.add(pair.getValue());

0 commit comments

Comments
 (0)