You've already forked linux-packaging-mono
Imported Upstream version 5.4.0.199
Former-commit-id: f4d318e4b2f128fa9f4d31b37bb3839a3fc0dfb2
This commit is contained in:
parent
536cd135cc
commit
5924117973
@ -252,7 +252,12 @@ namespace Xamarin.ApiDiff {
|
||||
|
||||
public override void Removed (XElement source)
|
||||
{
|
||||
Output.Write ("<h3>Removed Type <span class='breaking' data-is-breaking>{0}.{1}</span></h3>", State.Namespace, GetTypeName (source));
|
||||
string name = State.Namespace + "." + GetTypeName (source);
|
||||
|
||||
if (State.IgnoreRemoved.Any (re => re.IsMatch (name)))
|
||||
return;
|
||||
|
||||
Output.Write ("<h3>Removed Type <span class='breaking' data-is-breaking>{0}</span></h3>", name);
|
||||
}
|
||||
|
||||
public virtual string GetTypeName (XElement type)
|
||||
|
Reference in New Issue
Block a user