summaryrefslogtreecommitdiff
path: root/codemaker
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-07-03 01:16:34 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-07-03 01:16:34 +0100
commit74a81051491726e5625e36bd986ecc483a610a61 (patch)
treefe4878cd451f6234779ea910c77201e381d307c5 /codemaker
parent9a6d94b2b578306edee4b0e5c121fff37e990c9c (diff)
callcatcher: unused code
Diffstat (limited to 'codemaker')
-rw-r--r--codemaker/inc/codemaker/options.hxx4
-rw-r--r--codemaker/source/codemaker/options.cxx17
2 files changed, 0 insertions, 21 deletions
diff --git a/codemaker/inc/codemaker/options.hxx b/codemaker/inc/codemaker/options.hxx
index 5585394575ce..43e39b5eadfb 100644
--- a/codemaker/inc/codemaker/options.hxx
+++ b/codemaker/inc/codemaker/options.hxx
@@ -65,10 +65,6 @@ public:
sal_Bool isValid(const ::rtl::OString& option);
const ::rtl::OString getOption(const ::rtl::OString& option)
throw( IllegalArgument );
- const OptionMap& getOptions();
-
- const ::rtl::OString getInputFile(sal_uInt16 index)
- throw( IllegalArgument );
const StringVector& getInputFiles();
diff --git a/codemaker/source/codemaker/options.cxx b/codemaker/source/codemaker/options.cxx
index 75761aad5eb3..4050c1ba6266 100644
--- a/codemaker/source/codemaker/options.cxx
+++ b/codemaker/source/codemaker/options.cxx
@@ -64,23 +64,6 @@ const OString Options::getOption(const OString& option)
}
}
-const OptionMap& Options::getOptions()
-{
- return m_options;
-}
-
-const OString Options::getInputFile(sal_uInt16 index)
- throw( IllegalArgument )
-{
- if (index < m_inputFiles.size())
- {
- return m_inputFiles[index];
- } else
- {
- throw IllegalArgument("index is out of bound.");
- }
-}
-
const StringVector& Options::getInputFiles()
{
return m_inputFiles;