diff options
| author | Felipe Contreras <felipe.contreras@gmail.com> | 2023-03-31 14:40:50 -0600 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2023-05-29 07:51:02 -0300 |
| commit | 95a4bf38173311597bcc4fa7f597d58bb11ed119 (patch) | |
| tree | 3d009d11e19e29e888c58503adef580a68a48b96 /bindings/ruby/init.c | |
| parent | 239fdbbbf0cbd6cd6ebafb87e88cdb3cded75364 (diff) | |
ruby: db: reorganize initializer
In order to make it more extensible.
No functional changes.
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Diffstat (limited to 'bindings/ruby/init.c')
| -rw-r--r-- | bindings/ruby/init.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/bindings/ruby/init.c b/bindings/ruby/init.c index e0c9936a..2d1994af 100644 --- a/bindings/ruby/init.c +++ b/bindings/ruby/init.c @@ -41,8 +41,6 @@ VALUE notmuch_rb_eUnbalancedFreezeThawError; VALUE notmuch_rb_eUnbalancedAtomicError; ID ID_call; -ID ID_db_create; -ID ID_db_mode; const rb_data_type_t notmuch_rb_object_type = { .wrap_struct_name = "notmuch_object", @@ -95,8 +93,6 @@ Init_notmuch (void) VALUE mod; ID_call = rb_intern ("call"); - ID_db_create = rb_intern ("create"); - ID_db_mode = rb_intern ("mode"); mod = rb_define_module ("Notmuch"); |
