diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2022-03-07 15:31:39 -0500 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2022-03-07 15:31:39 -0500 |
commit | 6ddba5c542a149ac090ba2fc0300131475d9769f (patch) | |
tree | 43b5553dfda8626dfd5ed73cf0827ba9119269aa /mesonbuild | |
parent | 8434fb14095febb2b2d5f708e9f324366c3b521f (diff) | |
download | meson-6ddba5c542a149ac090ba2fc0300131475d9769f.zip meson-6ddba5c542a149ac090ba2fc0300131475d9769f.tar.gz meson-6ddba5c542a149ac090ba2fc0300131475d9769f.tar.bz2 |
remove unused code after subproject conversion to typed_kwargs
This should have been removed in commit
4a2058cb836242a6423870e671b6b76fa48167f3 but was forgotten.
Diffstat (limited to 'mesonbuild')
-rw-r--r-- | mesonbuild/interpreter/interpreter.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/mesonbuild/interpreter/interpreter.py b/mesonbuild/interpreter/interpreter.py index 9f12719..8eca0b3 100644 --- a/mesonbuild/interpreter/interpreter.py +++ b/mesonbuild/interpreter/interpreter.py @@ -796,8 +796,6 @@ external dependencies (including libraries) must go to "dependencies".''') def func_option(self, nodes, args, kwargs): raise InterpreterException('Tried to call option() in build description file. All options must be in the option file.') - @FeatureNewKwargs('subproject', '0.38.0', ['default_options']) - @permittedKwargs({'version', 'default_options', 'required'}) @typed_pos_args('subproject', str) @typed_kwargs( 'subproject', |