summaryrefslogtreecommitdiff
path: root/cli_ure
diff options
context:
space:
mode:
Diffstat (limited to 'cli_ure')
-rw-r--r--cli_ure/source/climaker/climaker_app.cxx12
1 files changed, 0 insertions, 12 deletions
diff --git a/cli_ure/source/climaker/climaker_app.cxx b/cli_ure/source/climaker/climaker_app.cxx
index 46935deb0b90..23cca54d9557 100644
--- a/cli_ure/source/climaker/climaker_app.cxx
+++ b/cli_ure/source/climaker/climaker_app.cxx
@@ -161,19 +161,12 @@ static bool is_option(
if (len == 2 && arg[ 1 ] == option_info->m_short_option)
{
++(*pIndex);
-#if OSL_DEBUG_LEVEL > 1
- OSL_TRACE(
- __FILE__": identified option \'%c\'", option_info->m_short_option );
-#endif
return true;
}
if (arg[ 1 ] == '-' && rtl_ustr_ascii_compare(
arg.pData->buffer + 2, option_info->m_name ) == 0)
{
++(*pIndex);
-#if OSL_DEBUG_LEVEL > 1
- OSL_TRACE( __FILE__": identified option \'%s\'", option_info->m_name );
-#endif
return true;
}
return false;
@@ -199,11 +192,6 @@ static bool read_argument(
{
osl_getCommandArg( *pIndex, &pValue->pData );
++(*pIndex);
-#if OSL_DEBUG_LEVEL > 1
- OString cstr_val(
- OUStringToOString( *pValue, osl_getThreadTextEncoding() ) );
- OSL_TRACE( __FILE__": argument value: %s\n", cstr_val.getStr() );
-#endif
return true;
}
--(*pIndex);