callcatcher: unused code

This commit is contained in:
Caolán McNamara 2011-07-03 01:16:34 +01:00
parent 9a6d94b2b5
commit 74a8105149
2 changed files with 0 additions and 21 deletions

View file

@ -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();

View file

@ -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;