Skip to content

Commit 1f81f41

Browse files
committed
Fix syntax error in ArgsRegistry
1 parent 698e8f7 commit 1f81f41

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

android/src/main/java/com/instabug/flutter/util/ArgsRegistry.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -120,39 +120,39 @@ public T get(Object key) {
120120
public static final ArgsMap<InstabugLocale> locales = new ArgsMap<InstabugLocale>() {{
121121
put("IBGLocale.arabic", InstabugLocale.ARABIC);
122122
put("IBGLocale.azerbaijani", InstabugLocale.AZERBAIJANI);
123-
put("IBGLocale.bulgarian", InstabugLocale.BULGARIAN),
123+
put("IBGLocale.bulgarian", InstabugLocale.BULGARIAN);
124124
put("IBGLocale.chineseSimplified", InstabugLocale.SIMPLIFIED_CHINESE);
125125
put("IBGLocale.chineseTraditional", InstabugLocale.TRADITIONAL_CHINESE);
126-
put("IBGLocale.croatian", InstabugLocale.CROATIAN),
126+
put("IBGLocale.croatian", InstabugLocale.CROATIAN);
127127
put("IBGLocale.czech", InstabugLocale.CZECH);
128128
put("IBGLocale.danish", InstabugLocale.DANISH);
129129
put("IBGLocale.dutch", InstabugLocale.NETHERLANDS);
130130
put("IBGLocale.english", InstabugLocale.ENGLISH);
131-
put("IBGLocale.estonian", InstabugLocale.ESTONIAN),
131+
put("IBGLocale.estonian", InstabugLocale.ESTONIAN);
132132
put("IBGLocale.finnish", InstabugLocale.FINNISH);
133133
put("IBGLocale.french", InstabugLocale.FRENCH);
134134
put("IBGLocale.german", InstabugLocale.GERMAN);
135-
put("IBGLocale.greek", InstabugLocale.GREEK),
135+
put("IBGLocale.greek", InstabugLocale.GREEK);
136136
put("IBGLocale.hungarian", InstabugLocale.HUNGARIAN);
137137
put("IBGLocale.indonesian", InstabugLocale.INDONESIAN);
138138
put("IBGLocale.italian", InstabugLocale.ITALIAN);
139139
put("IBGLocale.japanese", InstabugLocale.JAPANESE);
140140
put("IBGLocale.korean", InstabugLocale.KOREAN);
141-
put("IBGLocale.latvian", InstabugLocale.LATVIAN),
142-
put("IBGLocale.lithuanian", InstabugLocale.LITHUANIAN),
141+
put("IBGLocale.latvian", InstabugLocale.LATVIAN);
142+
put("IBGLocale.lithuanian", InstabugLocale.LITHUANIAN);
143143
put("IBGLocale.norwegian", InstabugLocale.NORWEGIAN);
144144
put("IBGLocale.polish", InstabugLocale.POLISH);
145145
put("IBGLocale.portugueseBrazil", InstabugLocale.PORTUGUESE_BRAZIL);
146146
put("IBGLocale.portuguesePortugal", InstabugLocale.PORTUGUESE_PORTUGAL);
147147
put("IBGLocale.romanian", InstabugLocale.ROMANIAN);
148148
put("IBGLocale.russian", InstabugLocale.RUSSIAN);
149-
put("IBGLocale.serbian", InstabugLocale.SERBIAN),
149+
put("IBGLocale.serbian", InstabugLocale.SERBIAN);
150150
put("IBGLocale.slovak", InstabugLocale.SLOVAK);
151-
put("IBGLocale.slovenian", InstabugLocale.SLOVENIAN),
151+
put("IBGLocale.slovenian", InstabugLocale.SLOVENIAN);
152152
put("IBGLocale.spanish", InstabugLocale.SPANISH);
153153
put("IBGLocale.swedish", InstabugLocale.SWEDISH);
154154
put("IBGLocale.turkish", InstabugLocale.TURKISH);
155-
put("IBGLocale.ukrainian", InstabugLocale.UKRAINIAN),
155+
put("IBGLocale.ukrainian", InstabugLocale.UKRAINIAN);
156156
}};
157157

158158
public static final ArgsMap<Key> placeholders = new ArgsMap<Key>() {{

0 commit comments

Comments
 (0)