summaryrefslogtreecommitdiff
path: root/jurt/com/sun
diff options
context:
space:
mode:
authorsb <sb@openoffice.org>2010-04-16 16:24:56 +0200
committersb <sb@openoffice.org>2010-04-16 16:24:56 +0200
commit6a93244b1ff7b822fa3d7fac7dcc40e1dc5add7e (patch)
treefef8707c11035f02b79dd62f0351ab3e55a7162c /jurt/com/sun
parenteb33c415e2a6e5a3324a308bbc22dc4f75ed3deb (diff)
sb120: #i110944# jpipe.dll wrapper around jpipx.dll
Diffstat (limited to 'jurt/com/sun')
-rw-r--r--jurt/com/sun/star/lib/connections/pipe/PipeConnection.java24
1 files changed, 1 insertions, 23 deletions
diff --git a/jurt/com/sun/star/lib/connections/pipe/PipeConnection.java b/jurt/com/sun/star/lib/connections/pipe/PipeConnection.java
index 31c010228..ea5057365 100644
--- a/jurt/com/sun/star/lib/connections/pipe/PipeConnection.java
+++ b/jurt/com/sun/star/lib/connections/pipe/PipeConnection.java
@@ -58,30 +58,8 @@ public class PipeConnection implements XConnection, XConnectionBroadcaster {
static public final boolean DEBUG = false;
static {
- // preload shared libraries whichs import lips are linked to jpipe
- if ( System.getProperty( "os.name" ).startsWith( "Windows" ) )
- {
- try {
- NativeLibraryLoader.loadLibrary(PipeConnection.class.getClassLoader(), "msvcr71");
- } catch (Throwable e){} // loading twice would fail
-
- try {
- NativeLibraryLoader.loadLibrary(PipeConnection.class.getClassLoader(), "msvcr70");
- } catch (Throwable e){} // loading twice would fail
-
- try {
- NativeLibraryLoader.loadLibrary(PipeConnection.class.getClassLoader(), "uwinapi");
- } catch (Throwable e){} // loading twice would fail
-
- try {
- NativeLibraryLoader.loadLibrary(PipeConnection.class.getClassLoader(), "sal3");
- } catch (Throwable e){} // loading twice would fail
- }
-
// load shared library for JNI code
- try {
- NativeLibraryLoader.loadLibrary(PipeConnection.class.getClassLoader(), "jpipe");
- } catch (Throwable e){} // loading twice would fail
+ NativeLibraryLoader.loadLibrary(PipeConnection.class.getClassLoader(), "jpipe");
}
protected String _aDescription;