Skip to content

Commit

Permalink
Remove return: from properties.
Browse files Browse the repository at this point in the history
  • Loading branch information
mandel-macaque committed Jun 9, 2017
1 parent 17c8474 commit 2271cd1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/corespotlight.cs
Original file line number Diff line number Diff line change
Expand Up @@ -994,22 +994,22 @@ interface CSSearchableItemAttributeSet : NSCopying, NSSecureCoding {

[iOS (11,0), NoTV, Mac (10, 11)]
[NullAllowed, Export ("userCreated", ArgumentSemantic.Strong)]
[return: BindAs (typeof (bool?))]
[BindAs (typeof (bool?))]
NSNumber IsUserCreated { [Bind ("isUserCreated")] get; set; }

[iOS (11, 0), NoTV, Mac (10, 11)]
[NullAllowed, Export ("userOwned", ArgumentSemantic.Strong)]
[return: BindAs (typeof (bool?))]
[BindAs (typeof (bool?))]
NSNumber IsUserOwned { [Bind ("isUserOwned")] get; set; }

[iOS (11, 0), NoTV, Mac (10, 11)]
[NullAllowed, Export ("userCurated", ArgumentSemantic.Strong)]
[return: BindAs (typeof (bool?))]
[BindAs (typeof (bool?))]
NSNumber IsUserCurated { [Bind ("isUserCurated")] get; set; }

[iOS (11, 0), NoTV, Mac (10, 11)]
[NullAllowed, Export ("rankingHint", ArgumentSemantic.Strong)]
[return: BindAs (typeof (int?))]
[BindAs (typeof (int?))]
NSNumber RankingHint { get; set; }

// CSSearchableItemAttributeSet_CSItemProvider
Expand Down

0 comments on commit 2271cd1

Please sign in to comment.