You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source-code/app/src/main/java/org/buildmlearn/toolkit/templates/ComprehensionAdapter.java
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -224,6 +224,14 @@ public void onClick(View v) {
224
224
isValidated = false;
225
225
}
226
226
227
+
for (inti = 0; i < options.size(); i++) {
228
+
for (intj = 0; j < i; j++) {
229
+
if (!options.get(i).getText().toString().trim().isEmpty() && options.get(i).getText().toString().trim().equalsIgnoreCase(options.get(j).getText().toString().trim())) {
@@ -222,6 +221,15 @@ public void onClick(View v) {
222
221
isValidated = false;
223
222
}
224
223
224
+
for (inti = 0; i < options.size(); i++) {
225
+
for (intj = 0; j < i; j++) {
226
+
if (!options.get(i).getText().toString().trim().isEmpty() && options.get(i).getText().toString().trim().equalsIgnoreCase(options.get(j).getText().toString().trim())) {
0 commit comments