pingidentity / scim2

The UnboundID SCIM 2.0 SDK for Java
181 stars 74 forks source link

Update ListResponse#getTotalResults() to return int instead of long #127

Closed braveulysses closed 5 years ago

braveulysses commented 5 years ago

Align the return type of ListResponse#getTotalResults() with the class's constructor.

What does this implement/fix? Explain your changes.

The ListResponse totalResults property has type int, and the constructor requires an int, but the accessor method (getTotalResults()) returns a long. Updated getTotalResults() to return an int.

Does this close any currently open issues?

This closes #117.