summaryrefslogtreecommitdiff
path: root/codemaker/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-07-03 01:14:35 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-07-03 01:14:35 +0100
commit9a6d94b2b578306edee4b0e5c121fff37e990c9c (patch)
tree577fe940fd1768538924878cdbd083898194c197 /codemaker/source
parent0aea4f41367ddfdfabeeb3c29198b1b30c7193ac (diff)
callcatcher: unused getExtraInputFile
Diffstat (limited to 'codemaker/source')
-rw-r--r--codemaker/source/codemaker/options.cxx12
1 files changed, 0 insertions, 12 deletions
diff --git a/codemaker/source/codemaker/options.cxx b/codemaker/source/codemaker/options.cxx
index 8748db53c2c8..75761aad5eb3 100644
--- a/codemaker/source/codemaker/options.cxx
+++ b/codemaker/source/codemaker/options.cxx
@@ -86,16 +86,4 @@ const StringVector& Options::getInputFiles()
return m_inputFiles;
}
-OString Options::getExtraInputFile(sal_uInt16 index) const
- throw( IllegalArgument )
-{
- if (index < m_extra_input_files.size())
- {
- return m_extra_input_files[index];
- } else
- {
- throw IllegalArgument("index is out of bound.");
- }
-}
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */