odo / quantile_estimator

memory-efficient Erlang data structures to store distributions of larges sets of data
MIT License
21 stars 12 forks source link

Remove unimplemented OTP application callback module from app.src. #1

Closed jemc closed 7 years ago

jemc commented 8 years ago

It seems that at one time, the intention was to create an OTP application callback module named annalist_app. However, this module was never created and does not exist.

The quantile_estimator library doesn't need any application start/stop functionality in its current form, so it counts as a library application. To make it work as a library application in OTP releases, we can simply remove the mod keyword from the app.src.

This PR does this, and as a result, this library is now usable from another OTP application's release.

odo commented 7 years ago

Just saw this. Thanks for the PR!