Skip to content

Commit 595ea68

Browse files
author
Stewart Miles
committed
Fixed compile error with old C# compilers.
Change-Id: I2205a22a6f8a9a3d689716d307bcc72eceeb71bc
1 parent 70d186f commit 595ea68

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

source/PlayServicesResolver/src/ResolverVer1_1.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -917,10 +917,11 @@ private void GradleResolution(
917917
window.progressTitle = window.summaryText;
918918
window.autoScrollToBottom = true;
919919
window.logger = PlayServicesResolver.logger;
920+
var maxProgressLines = (allDependenciesList.Count * 10) + 50;
920921
window.RunAsync(gradleWrapper, gradleArgumentsString,
921922
(result) => { RunOnMainThread.Run(() => { gradleComplete(result); }); },
922923
workingDirectory: gradleBuildDirectory,
923-
maxProgressLines: (allDependenciesList.Count * 10) + 50);
924+
maxProgressLines: maxProgressLines);
924925
window.Show();
925926
}
926927

0 commit comments

Comments
 (0)