Skip to content

Commit

Permalink
Merge pull request #1528 from jp2masa/remove-avaloniawin32exception-u…
Browse files Browse the repository at this point in the history
…sings

Removed AvaloniaWin32Exception usings
  • Loading branch information
jkoritzinsky authored Apr 29, 2018
2 parents f898f5e + 35b4913 commit a6f9a4f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 18 deletions.
7 changes: 0 additions & 7 deletions src/Windows/Avalonia.Win32/ScreenImpl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,9 @@
// Licensed under the MIT license. See licence.md file in the project root for full license information.

using System;
using System.Linq;
using Avalonia.Controls;
using Avalonia.Platform;
using Avalonia.Utilities;
using static Avalonia.Win32.Interop.UnmanagedMethods;

#if NETSTANDARD
using Win32Exception = Avalonia.Win32.NetStandard.AvaloniaWin32Exception;
#endif

namespace Avalonia.Win32
{
public class ScreenImpl : IScreenImpl
Expand Down
18 changes: 7 additions & 11 deletions src/Windows/Avalonia.Win32/Win32Platform.cs
Original file line number Diff line number Diff line change
@@ -1,27 +1,23 @@
// Copyright (c) The Avalonia Project. All rights reserved.
// Licensed under the MIT license. See licence.md file in the project root for full license information.

using Avalonia.Input.Platform;
using System;
using System.Collections.Generic;
using System.Reactive.Disposables;
using System.ComponentModel;
using System.Diagnostics.CodeAnalysis;
using System.IO;
using System.Reactive.Disposables;
using System.Runtime.InteropServices;
using System.Threading;
using Avalonia.Controls;
using Avalonia.Controls.Platform;
using Avalonia.Input;
using Avalonia.Input.Platform;
using Avalonia.Platform;
using Avalonia.Win32.Input;
using Avalonia.Win32.Interop;
using Avalonia.Controls;
using Avalonia.Rendering;
using Avalonia.Threading;
using System.IO;
#if NETSTANDARD
using Win32Exception = Avalonia.Win32.NetStandard.AvaloniaWin32Exception;
#else
using System.ComponentModel;
#endif
using Avalonia.Win32.Input;
using Avalonia.Win32.Interop;

namespace Avalonia
{
Expand Down

0 comments on commit a6f9a4f

Please sign in to comment.