Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/Mono.Android/Android.Runtime/IntDefinitionAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ public IntDefinitionAttribute (string constantMember)
}

public string ConstantMember { get; set; }
public string JniField { get; set; }
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ protected override bool IsRemovedAttribute (CustomAttribute attribute)
// note: this also avoid calling FullName (which allocates a string)
var attr_type = attribute.Constructor.DeclaringType;
switch (attr_type.Name) {
case "IntDefinitionAttribute":
return attr_type.Namespace == "Android.Runtime";
case "ObsoleteAttribute":
// System.Mono*Attribute from mono/mcs/build/common/MonoTODOAttribute.cs
case "MonoDocumentationNoteAttribute":
Expand Down