diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2015-06-20 13:29:22 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2015-06-20 13:29:22 +0300 |
commit | 790fe206e6a2404d2e346482125d7fdc21568a91 (patch) | |
tree | 543393b67483d2e0df2051bb4ee0b18fa91cf44b /interpreter.py | |
parent | b18f18c54242cc7a64e1a256caca7a57b7f41e91 (diff) | |
download | meson-790fe206e6a2404d2e346482125d7fdc21568a91.zip meson-790fe206e6a2404d2e346482125d7fdc21568a91.tar.gz meson-790fe206e6a2404d2e346482125d7fdc21568a91.tar.bz2 |
Removed unused method. Closes #163.
Diffstat (limited to 'interpreter.py')
-rw-r--r-- | interpreter.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/interpreter.py b/interpreter.py index 863b23b..026c7ff 100644 --- a/interpreter.py +++ b/interpreter.py @@ -376,9 +376,6 @@ class Data(InterpreterObject): if not isinstance(self.install_dir, str): raise InterpreterException('Custom_install_dir must be a string.') - def get_install_subdir(self): - return self.install_subdir - def get_source_subdir(self): return self.source_subdir |