summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-12-15 12:26:28 +0200
committerMichael Stahl <mstahl@redhat.com>2016-12-15 16:20:54 +0000
commit690cf2a5ac87d3d05c45a86944e7f6b0adf12cf2 (patch)
treeda6e4bc5b8ca99192ba7c49e18bf710ffce72277
parentf0804905ec38cdf3a5af1ebe5b087809d2850ccd (diff)
no point in having both SAL_WARN and OSL_FAIL for the same thing
Change-Id: I1beafff257e968a62184f8b1d8cf2a3a24e7c945 Reviewed-on: https://gerrit.libreoffice.org/32039 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
-rw-r--r--include/canvas/canvastools.hxx2
-rw-r--r--slideshow/source/engine/animationfactory.cxx4
-rw-r--r--stoc/test/javavm/testjavavm.cxx1
-rw-r--r--stoc/test/testconv.cxx1
-rw-r--r--stoc/test/testcorefl.cxx1
-rw-r--r--stoc/test/testintrosp.cxx1
6 files changed, 0 insertions, 10 deletions
diff --git a/include/canvas/canvastools.hxx b/include/canvas/canvastools.hxx
index 261a490230bb..df97d3f78232 100644
--- a/include/canvas/canvastools.hxx
+++ b/include/canvas/canvastools.hxx
@@ -461,7 +461,6 @@ namespace canvas
aStr != aStr.toAsciiLowerCase() )
{
SAL_WARN("canvas", "ValueMap::ValueMap(): Key is not lowercase " << pMap->maKey);
- OSL_FAIL( "ValueMap::ValueMap(): Key is not lowercase" );
}
if( mnEntries > 1 )
@@ -481,7 +480,6 @@ namespace canvas
aStr2 != aStr2.toAsciiLowerCase() )
{
SAL_WARN("canvas", "ValueMap::ValueMap(): Key is not lowercase" << pMap[1].maKey);
- OSL_FAIL( "ValueMap::ValueMap(): Key is not lowercase" );
}
}
}
diff --git a/slideshow/source/engine/animationfactory.cxx b/slideshow/source/engine/animationfactory.cxx
index 0d04f040e4e5..c27f7d57a235 100644
--- a/slideshow/source/engine/animationfactory.cxx
+++ b/slideshow/source/engine/animationfactory.cxx
@@ -678,7 +678,6 @@ namespace slideshow
if( !rAny.hasValue() )
{
- OSL_FAIL( "getDefault(): cannot get requested shape property" );
SAL_WARN("slideshow", "getDefault(): cannot get shape property " << rPropertyName );
return ValueType();
}
@@ -688,7 +687,6 @@ namespace slideshow
if( !(rAny >>= aValue) )
{
- OSL_FAIL( "getDefault(): cannot extract requested shape property" );
SAL_WARN("slideshow", "getDefault(): cannot extract shape property " << rPropertyName);
return ValueType();
}
@@ -705,7 +703,6 @@ namespace slideshow
if( !rAny.hasValue() )
{
- OSL_FAIL( "getDefault(): cannot get requested shape color property" );
SAL_WARN("slideshow", "getDefault(): cannot get shape color property " << rPropertyName);
return RGBColor();
}
@@ -715,7 +712,6 @@ namespace slideshow
if( !(rAny >>= nValue) )
{
- OSL_FAIL( "getDefault(): cannot extract requested shape color property" );
SAL_INFO("slideshow", "getDefault(): cannot extract shape color property " << rPropertyName);
return RGBColor();
}
diff --git a/stoc/test/javavm/testjavavm.cxx b/stoc/test/javavm/testjavavm.cxx
index f856f76dc2a8..e7d0c4d5a4cc 100644
--- a/stoc/test/javavm/testjavavm.cxx
+++ b/stoc/test/javavm/testjavavm.cxx
@@ -138,7 +138,6 @@ SAL_IMPLEMENT_MAIN()
}
catch (const Exception & rExc)
{
- OSL_FAIL( "### exception occurred!" );
SAL_WARN("stoc", "### exception occurred: " << rExc.Message );
}
diff --git a/stoc/test/testconv.cxx b/stoc/test/testconv.cxx
index 2eebdef67d4c..1e9aae16ed42 100644
--- a/stoc/test/testconv.cxx
+++ b/stoc/test/testconv.cxx
@@ -671,7 +671,6 @@ SAL_IMPLEMENT_MAIN()
}
catch (const Exception & rExc)
{
- OSL_FAIL( "### exception occurred!" );
SAL_WARN("stoc", "### exception occurred: " << rExc.Message );
}
diff --git a/stoc/test/testcorefl.cxx b/stoc/test/testcorefl.cxx
index 7aa06a9ca82d..3b2a02cccd8a 100644
--- a/stoc/test/testcorefl.cxx
+++ b/stoc/test/testcorefl.cxx
@@ -367,7 +367,6 @@ SAL_IMPLEMENT_MAIN()
}
catch (const Exception & rExc)
{
- OSL_FAIL( "### exception occurred!" );
SAL_WARN("stoc", "### exception occurred: " << rExc.Message );
}
diff --git a/stoc/test/testintrosp.cxx b/stoc/test/testintrosp.cxx
index caff1337a91c..2d5a682bd583 100644
--- a/stoc/test/testintrosp.cxx
+++ b/stoc/test/testintrosp.cxx
@@ -1195,7 +1195,6 @@ SAL_IMPLEMENT_MAIN()
}
catch (const Exception & rExc)
{
- OSL_FAIL( "### exception occurred!" );
SAL_WARN("stoc", "### exception occurred: " << rExc.Message );
}