PhotonView Find(viewID) - why not Find(PhotonViewID)

Options
jashan
jashan ✭✭
During my project conversion, I just ran into this: PUN.PhotonView has a Find based on int instead of based on PhotonViewID. There's probably a reason for that, so I'm asking: Why?

Locally, I added
public static PhotonView Find(PhotonViewID viewID) {
        return Find(viewID.ID);
    }

for my convenience and because I prefer methods to be as type safe as possible.