diff options
Diffstat (limited to 'vcl/inc/graphic')
-rw-r--r-- | vcl/inc/graphic/DetectorTools.hxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/vcl/inc/graphic/DetectorTools.hxx b/vcl/inc/graphic/DetectorTools.hxx index b9163de135d9..3847457fcfd8 100644 --- a/vcl/inc/graphic/DetectorTools.hxx +++ b/vcl/inc/graphic/DetectorTools.hxx @@ -50,11 +50,9 @@ bool checkArrayForMatchingStrings(const char* pSource, sal_Int32 nSourceSize, for (OString const& rString : rStrings) { sal_Int32 nCurrentSize = nSourceSize - sal_Int32(pCurrent - pBegin); - printf("Current size %d -> %d\n", nCurrentSize, nSourceSize); pCurrent = matchArray(pCurrent, nCurrentSize, rString.getStr(), rString.getLength()); if (pCurrent == nullptr) return false; - printf("%s\n", pCurrent); } return true; } |