diff options
author | Joachim Lingner <jl@openoffice.org> | 2001-11-12 11:27:34 +0000 |
---|---|---|
committer | Joachim Lingner <jl@openoffice.org> | 2001-11-12 11:27:34 +0000 |
commit | f9bcd321f0144a71010cab24dab8b11580ee1126 (patch) | |
tree | c03ac7198df59855afc32fff8959ce5614c6edc2 | |
parent | 116c44ce6ca8f0a686cf6d66e215adf6574dbd0e (diff) |
#75148# reverted changes
-rw-r--r-- | sj2/stardiv/controller/SjSettings.java | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/sj2/stardiv/controller/SjSettings.java b/sj2/stardiv/controller/SjSettings.java index d7f90341ffef..bd75d5c7207a 100644 --- a/sj2/stardiv/controller/SjSettings.java +++ b/sj2/stardiv/controller/SjSettings.java @@ -2,9 +2,9 @@ * * $RCSfile: SjSettings.java,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: jl $ $Date: 2001-11-01 13:23:17 $ + * last change: $Author: jl $ $Date: 2001-11-12 12:27:34 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -183,19 +183,22 @@ 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.maxConnections" ), pChangeProps.get( "http.maxConnections" ) ) - || !equalsImpl( props.get( "http.keepAlive" ), pChangeProps.get( "http.keepAlive" ) ); + !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" ) ); bFtpClientChanged = - !equalsImpl( props.get( "ftpProxySet" ), pChangeProps.get( "ftpProxySet" ) ); + !equalsImpl( props.get( "ftpProxySet" ), pChangeProps.get( "ftpProxySet" ) ) + || !equalsImpl( props.get( "ftpProxyHost" ), pChangeProps.get( "ftpProxyHost" ) ) + || !equalsImpl( props.get( "ftpProxyPort" ), pChangeProps.get( "ftpProxyPort" ) ); bSecurityChanged = !equalsImpl( props.get( "appletviewer.security.mode" ), pChangeProps.get( "appletviewer.security.mode" ) ) || !equalsImpl( props.get( "stardiv.security.disableSecurity" ), pChangeProps.get( "stardiv.security.disableSecurity" ) ); } + // put new and changed properties to the property table if( pChangeProps != null ) { |