summaryrefslogtreecommitdiff
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
commit0e89696fa149d9cb3ce7cedb6eaed42598979cb3 (patch)
treed751d7270c0a122dc5aeb4fcb992cde386f29ac2
parent369be67fb63417bf021205f6c7c56607fad851b4 (diff)
callcatcher: unused code
-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 b0770f0d1..4295fc86b 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 edad58b0c..c6ab6b865 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;