maxmind / MaxMind-DB-Reader-java

Java reader for the MaxMind DB format
https://maxmind.github.io/MaxMind-DB-Reader-java/
Apache License 2.0
114 stars 43 forks source link

eliminate Decoder.Result objects #22

Closed phraktle closed 8 years ago

phraktle commented 8 years ago

The ByteBuffer itself keeps track of the read position. Reduces object churn (#13), also simplifies the code.

oschwald commented 8 years ago

Thanks! This is a big improvement in terms of readability.