fix comment left behind

in commit e25ba7dc57229d1cb9794abd1ca23c0d87ebecb3
   use a dummy clipboard when running unit tests

Change-Id: If5f57d1777dddbd70771299c8e161b33da10711d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121600
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
diff --git a/vcl/win/dtrans/WinClipboard.cxx b/vcl/win/dtrans/WinClipboard.cxx
index 39094d9..2c33fe7 100644
--- a/vcl/win/dtrans/WinClipboard.cxx
+++ b/vcl/win/dtrans/WinClipboard.cxx
@@ -327,12 +327,12 @@ uno::Sequence<OUString> SAL_CALL CWinClipboard::getSupportedServiceNames()
    return { "com.sun.star.datatransfer.clipboard.SystemClipboard" };
}

// We run unit tests in parallel, which is a problem when touching a shared resource
extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface*
dtrans_CWinClipboard_get_implementation(css::uno::XComponentContext* context,
                                        css::uno::Sequence<css::uno::Any> const& args)
{
    // the system clipboard, so rather use the dummy GenericClipboard.
    // We run unit tests in parallel, which is a problem when touching a shared resource
    // like the system clipboard, so rather use the dummy GenericClipboard.
    static const bool bRunningUnitTest = getenv("LO_TESTNAME");

    if (bRunningUnitTest)