Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replaced LayoutSerializer with Async variant #265

Closed
wants to merge 11 commits into from
Prev Previous commit
Next Next commit
Removed obsolete marker of non-async variants
  • Loading branch information
X39 committed Mar 10, 2022
commit 643fd7786474f4a535f3f0049bfc39ed9b48ab8d
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ This program is provided to you under the terms of the Microsoft Public
namespace AvalonDock.Layout.Serialization
{
/// <summary>Implements a base class for the layout serialization/deserialization of the docking framework.</summary>
[Obsolete("This class was replaced with " + nameof(LayoutSerializerBase))]
public abstract class LayoutSerializer
{
#region fields
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ This program is provided to you under the terms of the Microsoft Public
namespace AvalonDock.Layout.Serialization
{
/// <summary>Implements a layout serialization/deserialization method of the docking framework.</summary>
[Obsolete("This class was replaced with " + nameof(AsyncXmlLayoutSerializer))]
public class XmlLayoutSerializer : LayoutSerializer
{
#region Constructors
Expand Down