Skip to content

Commit

Permalink
Fix up all mapping paths (#9121)
Browse files Browse the repository at this point in the history
  • Loading branch information
dellis1972 committed Jul 19, 2024
1 parent 55c2dd8 commit 9db28dc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Xamarin.Android.Build.Tasks/Tasks/JavaToolTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,7 @@ internal virtual bool ProcessOutput (string singleLine, AssemblyIdentityMap asse
{
var match = CodeErrorRegEx.Match (singleLine);
var exceptionMatch = ExceptionRegEx.Match (singleLine);
var lp = lpRegex.Match (singleLine);
if (lp.Success) {
foreach (Match lp in lpRegex.Matches (singleLine)) {
var id = lp.Groups["identifier"].Value;
var asmName = assemblyMap.GetAssemblyNameForImportDirectory (id);
if (!string.IsNullOrEmpty (asmName)) {
Expand Down

0 comments on commit 9db28dc

Please sign in to comment.