Skip to content

Commit aac9ecf

Browse files
committed
Merge pull request #12 from Leanplum/feature/fix-LP-4496
fix() wrong return, should be continue.
1 parent 82dc858 commit aac9ecf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

AndroidSDK/src/com/leanplum/internal/VarCache.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ private static void fileVariableFinish() {
466466
for (String name : new HashMap<>(vars).keySet()) {
467467
Var<?> var = vars.get(name);
468468
if (var == null) {
469-
return;
469+
continue;
470470
}
471471
String overrideFile = var.stringValue;
472472
if (var.isResource && Constants.Kinds.FILE.equals(var.kind()) && overrideFile != null &&

0 commit comments

Comments
 (0)