Reply to comment

A response to your observations

Yes, this would very easily be a static class or at the very least, a series of static methods within this class. There is no intrinsic state so it shouldn't cause any problems to make this static. This also saves a line of code everytime you use it so it's a good point.

On the second for the implementation details when serializing the user's data, I agree. It can be more hidden. In some ways, I think I did it this way so it was clearer when I posted the article about what was happening. Feel free to hide it or post your changes here. Thanks!

Reply