summaryrefslogtreecommitdiff
path: root/sj2
diff options
context:
space:
mode:
authorJoachim Lingner <jl@openoffice.org>2001-11-01 12:23:17 +0000
committerJoachim Lingner <jl@openoffice.org>2001-11-01 12:23:17 +0000
commite09e7dbd3880eaa885068fc869f4a286d5db7250 (patch)
tree0784c8d9fc855e8ba6329510ad026d6ab55a98ee /sj2
parent3fdae1cffb85a3d4c5ef9ef6dccc08959068ac6d (diff)
#75148#
Diffstat (limited to 'sj2')
-rw-r--r--sj2/stardiv/controller/SjSettings.java18
1 files changed, 8 insertions, 10 deletions
diff --git a/sj2/stardiv/controller/SjSettings.java b/sj2/stardiv/controller/SjSettings.java
index c5ab72b3d51d..d7f90341ffef 100644
--- a/sj2/stardiv/controller/SjSettings.java
+++ b/sj2/stardiv/controller/SjSettings.java
@@ -2,9 +2,9 @@
*
* $RCSfile: SjSettings.java,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 16:54:03 $
+ * last change: $Author: jl $ $Date: 2001-11-01 13:23:17 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -183,16 +183,14 @@ public final class SjSettings {
// detect changes
if( pChangeProps != null )
{
+ // Changes of http.proxyHost, http.proxyPort, ftp.proxyHost, ftp.proxyPort,
+ // http.nonProxyHosts, ftp.nonProxyHosts are detected by the JavaVM service
+ // and changed in the VM.
bHttpClientChanged =
- !equalsImpl( props.get( "http.proxyHost" ), pChangeProps.get( "http.proxyHost" ) )
- || !equalsImpl( props.get( "http.proxyPort" ), pChangeProps.get( "http.proxyPort" ) )
- || !equalsImpl( props.get( "http.maxConnections" ), pChangeProps.get( "http.maxConnections" ) )
- || !equalsImpl( props.get( "http.keepAlive" ), pChangeProps.get( "http.keepAlive" ) )
- || !equalsImpl( props.get( "http.nonProxyHosts" ), pChangeProps.get( "http.nonProxyHosts" ) );
+ !equalsImpl( props.get( "http.maxConnections" ), pChangeProps.get( "http.maxConnections" ) )
+ || !equalsImpl( props.get( "http.keepAlive" ), pChangeProps.get( "http.keepAlive" ) );
bFtpClientChanged =
- !equalsImpl( props.get( "ftpProxySet" ), pChangeProps.get( "ftpProxySet" ) )
- || !equalsImpl( props.get( "ftpProxyHost" ), pChangeProps.get( "ftpProxyHost" ) )
- || !equalsImpl( props.get( "ftpProxyPort" ), pChangeProps.get( "ftpProxyPort" ) );
+ !equalsImpl( props.get( "ftpProxySet" ), pChangeProps.get( "ftpProxySet" ) );
bSecurityChanged =
!equalsImpl( props.get( "appletviewer.security.mode" ), pChangeProps.get( "appletviewer.security.mode" ) )
|| !equalsImpl( props.get( "stardiv.security.disableSecurity" ), pChangeProps.get( "stardiv.security.disableSecurity" ) );