Browse Source
Use Array.Empty instead of list.
Co-authored-by: jp2masa <jp2masa@users.noreply.github.com>
pull/4548/head
danwalmsley
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/Avalonia.Native/ScreenImpl.cs
|
|
|
@ -39,7 +39,7 @@ namespace Avalonia.Native |
|
|
|
return result; |
|
|
|
} |
|
|
|
|
|
|
|
return new List<Screen>(); |
|
|
|
return Array.Empty<Screen>(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|