Add to group missing from new 10.2.2 java sdk?

The latest 10.2.2 okta -sdk-java is missing the method to add existing users to groups from the user api.

The gitub page shows the add a user to a group example but is not available in 10.2.2

“Add a user to a Group”
user.addToGroup(“groupId”)

Looks like the remove user method is missing as well. Did this method move to another Class?

This method works in a previous project using okta java sdk version 8.2.3.

I got a response on the github page. The new way is use the groupApi:

groupApi.assignUserToGroup(String groupId, String userId)

The Github example just needs to be updated