Skip to content

Commit

Permalink
Removed some whitespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
AzureKitsune committed May 29, 2013
1 parent e8bc04b commit 629063d
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions MahApps.Metro/Controls/FlipView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -246,11 +246,7 @@ private void HideBanner()
public string BannerText
{
get { return (string)GetValue(BannerTextProperty); }
set
{
SetValue(BannerTextProperty, value);

}
set { SetValue(BannerTextProperty, value); }
}

private void ChangeBannerText(string value = null)
Expand All @@ -259,8 +255,6 @@ private void ChangeBannerText(string value = null)
{
var newValue = value != null ? value : BannerText;

//if (newValue == (string)GetValue(BannerTextProperty)) return;

if (newValue == null) return;

if (HideControlStoryboard_CompletedHandler != null)
Expand Down

0 comments on commit 629063d

Please sign in to comment.