summaryrefslogtreecommitdiffstats
path: root/framework/source/services/urltransformer.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'framework/source/services/urltransformer.cxx')
-rw-r--r--framework/source/services/urltransformer.cxx13
1 files changed, 3 insertions, 10 deletions
diff --git a/framework/source/services/urltransformer.cxx b/framework/source/services/urltransformer.cxx
index 4e150844decc..77394bbbdb3a 100644
--- a/framework/source/services/urltransformer.cxx
+++ b/framework/source/services/urltransformer.cxx
@@ -128,8 +128,7 @@ namespace
sal_Bool SAL_CALL URLTransformer::parseStrict( css::util::URL& aURL ) throw( css::uno::RuntimeException, std::exception )
{
// Safe impossible cases.
- if (( &aURL == NULL ) ||
- ( aURL.Complete.isEmpty() ) )
+ if ( aURL.Complete.isEmpty() )
{
return sal_False;
}
@@ -181,8 +180,7 @@ sal_Bool SAL_CALL URLTransformer::parseSmart( css::util::URL& aURL,
const OUString& sSmartProtocol ) throw( css::uno::RuntimeException, std::exception )
{
// Safe impossible cases.
- if (( &aURL == NULL ) ||
- ( aURL.Complete.isEmpty() ) )
+ if ( aURL.Complete.isEmpty() )
{
return sal_False;
}
@@ -233,10 +231,6 @@ sal_Bool SAL_CALL URLTransformer::parseSmart( css::util::URL& aURL,
// XURLTransformer
sal_Bool SAL_CALL URLTransformer::assemble( css::util::URL& aURL ) throw( css::uno::RuntimeException, std::exception )
{
- // Safe impossible cases.
- if ( &aURL == NULL )
- return sal_False;
-
// Initialize parser.
INetURLObject aParser;
@@ -297,8 +291,7 @@ OUString SAL_CALL URLTransformer::getPresentation( const css::util::URL& aURL,
sal_Bool bWithPassword ) throw( css::uno::RuntimeException, std::exception )
{
// Safe impossible cases.
- if (( &aURL == NULL ) ||
- ( aURL.Complete.isEmpty() ) ||
+ if (( aURL.Complete.isEmpty() ) ||
(( bWithPassword != sal_True ) &&
( bWithPassword != sal_False ) ) )
{