yahoo / squidb

SquiDB is a SQLite database library for Android and iOS
https://github.com/yahoo/squidb/wiki
Apache License 2.0
1.31k stars 132 forks source link

Fix handling of static final fields in model specs #153

Closed sbosley closed 8 years ago

sbosley commented 8 years ago

There was a bug in the code generator that would create column definitions from private static final fields in model specs, since it only considered public static final fields to be constants. This fixes the bug, and also allows the constant copying plugin to copy any package-level or higher static final fields as constants to the generated model class.

jdkoren commented 8 years ago

LGTM