removes useless comment

This commit is contained in:
Paul Schneider 2016-10-07 23:14:07 +02:00
commit cd3fa69f73

View file

@ -164,10 +164,8 @@ namespace BookAStar.Behaviors
void OnTapRecognizerTapped(object sender, EventArgs args)
{
// TODO HACK: PropertyChange does not fire, if the value is not changed :-(
bool currentIsStarred = (bool) GetValue(IsStarredProperty);
SetValue(IsStarredProperty, !currentIsStarred);
// does not lead to the call of:
OnIsStarredChanged(this,currentIsStarred,!currentIsStarred);
}
}