Skip to content

Commit

Permalink
Fix SA1516 (ElementsMustBeSeparatedByBlankLine) violation
Browse files Browse the repository at this point in the history
Usually when processing macros, the line where the macro is present,
is processed into a blank line. But in this case, it remove the entire line.
  • Loading branch information
Nirmal4G committed Jun 17, 2021
1 parent f6d0705 commit 9153694
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ public sealed class AdaptiveProgressBarValue
private AdaptiveProgressBarValue()
{
}

#if !WINRT
/// <summary>
/// Initializes a new instance of the <see cref="AdaptiveProgressBarValue"/> class.
Expand All @@ -43,6 +44,7 @@ public AdaptiveProgressBarValue(string bindingName)
BindingName = bindingName;
}
#endif

internal string ToXmlString()
{
if (IsIndeterminate)
Expand Down Expand Up @@ -102,6 +104,7 @@ public static AdaptiveProgressBarValue FromBinding(string bindingName)
BindingName = bindingName
};
}

#if !WINRT
/// <summary>
/// Creates an <see cref="AdaptiveProgressBarValue"/> that has the raw double value.
Expand Down

0 comments on commit 9153694

Please sign in to comment.