[multiple changes]
2004-10-18 Michael Koch <konqueror@gmx.de> * gnu/java/net/protocol/http/Connection.java, java/nio/MappedByteBufferImpl.java, java/text/RuleBasedCollator.java, java/util/ResourceBundle.java: Reworked import statements. 2004-10-18 Jeroen Frijters <jeroen@frijters.net> * java/security/IdentityScope.java (systemScope): Removed useless initializer. * java/security/Policy.java (currentPolicy): Likewise. From-SVN: r89210
This commit is contained in:
parent
2cd0e9f4ed
commit
2c661756f4
@ -1,3 +1,18 @@
|
||||
2004-10-18 Michael Koch <konqueror@gmx.de>
|
||||
|
||||
* gnu/java/net/protocol/http/Connection.java,
|
||||
java/nio/MappedByteBufferImpl.java,
|
||||
java/text/RuleBasedCollator.java,
|
||||
java/util/ResourceBundle.java:
|
||||
Reworked import statements.
|
||||
|
||||
2004-10-18 Jeroen Frijters <jeroen@frijters.net>
|
||||
|
||||
* java/security/IdentityScope.java
|
||||
(systemScope): Removed useless initializer.
|
||||
* java/security/Policy.java
|
||||
(currentPolicy): Likewise.
|
||||
|
||||
2004-10-18 Michael Koch <konqueror@gmx.de>
|
||||
|
||||
* java/lang/System.java: Revert accidential change.
|
||||
|
@ -39,6 +39,9 @@ exception statement from your version. */
|
||||
|
||||
package gnu.java.net.protocol.http;
|
||||
|
||||
import gnu.java.net.HeaderFieldHelper;
|
||||
import gnu.java.security.action.GetPropertyAction;
|
||||
|
||||
import java.io.BufferedInputStream;
|
||||
import java.io.BufferedOutputStream;
|
||||
import java.io.ByteArrayOutputStream;
|
||||
@ -52,14 +55,11 @@ import java.net.HttpURLConnection;
|
||||
import java.net.ProtocolException;
|
||||
import java.net.Socket;
|
||||
import java.net.URL;
|
||||
import java.net.URLConnection;
|
||||
import java.security.AccessController;
|
||||
import java.security.PrivilegedAction;
|
||||
import java.util.HashMap;
|
||||
import java.util.Iterator;
|
||||
import java.util.Map;
|
||||
import gnu.java.net.HeaderFieldHelper;
|
||||
import gnu.java.security.action.GetPropertyAction;
|
||||
|
||||
/**
|
||||
* This subclass of java.net.URLConnection models a URLConnection via
|
||||
|
@ -38,9 +38,10 @@ exception statement from your version. */
|
||||
|
||||
package java.nio;
|
||||
|
||||
import java.io.IOException;
|
||||
import gnu.gcj.RawData;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
final class MappedByteBufferImpl extends MappedByteBuffer
|
||||
{
|
||||
boolean readOnly;
|
||||
|
@ -71,7 +71,7 @@ import java.util.Enumeration;
|
||||
public abstract class IdentityScope extends Identity
|
||||
{
|
||||
private static final long serialVersionUID = -2337346281189773310L;
|
||||
private static IdentityScope systemScope = null;
|
||||
private static IdentityScope systemScope;
|
||||
|
||||
/**
|
||||
* This constructor is used for serialization only and should not be used by
|
||||
|
@ -95,7 +95,7 @@ import java.util.Map;
|
||||
*/
|
||||
public abstract class Policy
|
||||
{
|
||||
static private Policy currentPolicy = null;
|
||||
static private Policy currentPolicy;
|
||||
|
||||
/** Map of ProtectionDomains to PermissionCollections for this instance. */
|
||||
private Map pd2pc = null;
|
||||
|
@ -35,11 +35,11 @@ this exception to your version of the library, but you are not
|
||||
obligated to do so. If you do not wish to do so, delete this
|
||||
exception statement from your version. */
|
||||
|
||||
|
||||
package java.text;
|
||||
|
||||
import java.util.Enumeration;
|
||||
import java.util.HashMap;
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
|
||||
/* Written using "Java Class Libraries", 2nd edition, plus online
|
||||
* API docs for JDK 1.2 from http://www.javasoft.com.
|
||||
|
@ -38,10 +38,10 @@ exception statement from your version. */
|
||||
|
||||
package java.util;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.lang.ref.Reference;
|
||||
import java.lang.ref.SoftReference;
|
||||
import java.io.InputStream;
|
||||
import java.io.IOException;
|
||||
|
||||
/**
|
||||
* A resource bundle contains locale-specific data. If you need localized
|
||||
|
Loading…
Reference in New Issue
Block a user