sqids / sqids-java

Official Java port of Sqids. Generate short unique IDs from numbers.
https://sqids.org/java
MIT License
198 stars 16 forks source link

Hoist constants from Sqids.Builder to Sqids #13

Open robhanlon22 opened 11 months ago

robhanlon22 commented 11 months ago

Since Sqids.Builder doesn't do anything with these constants behavior-wise, it makes sense to me to hoist the constants to Sqids so they're easier to see. Since these constants are now in the top-level Sqids class, I've also made Sqids.Builder package-private since it's not meant to be instantiated directly.

I also added a few things to the .gitignore that showed up in my coding environment.