DatagramPacket.java (DatagramPacket): Added linebreak for 80 chars per line.
2002-09-13 Michael Koch <konqueror@gmx.de> * java/net/DatagramPacket.java (DatagramPacket): Added linebreak for 80 chars per line. * java/net/JarURLConection.java (getInputStream, getJarEntry): Likewise. * java/net/SocketPermission.java (SocketPermission class docu, implies): Likewise. * java/net/URLClassLoader.java (findResources): Likewise. * java/net/URLConnection.java: Reindendet remark for 80 chars per line From-SVN: r57105
This commit is contained in:
parent
a1c65f9f4f
commit
69aeba4ed0
6 changed files with 26 additions and 8 deletions
|
@ -106,7 +106,8 @@ public abstract class JarURLConnection extends URLConnection
|
|||
{
|
||||
// This is a JarURLConnection for the entire jar file.
|
||||
|
||||
InputStream jar_is = new BufferedInputStream(jarFileURLConnection.getInputStream ());
|
||||
InputStream jar_is = new BufferedInputStream(
|
||||
jarFileURLConnection.getInputStream ());
|
||||
return new JarInputStream(jar_is);
|
||||
}
|
||||
|
||||
|
@ -131,7 +132,8 @@ public abstract class JarURLConnection extends URLConnection
|
|||
else
|
||||
{
|
||||
// If the jar file is not local, ...
|
||||
JarInputStream zis = new JarInputStream(jarFileURLConnection.getInputStream ());
|
||||
JarInputStream zis = new JarInputStream(
|
||||
jarFileURLConnection.getInputStream ());
|
||||
|
||||
// This is hideous, we're doing a linear search...
|
||||
for (ZipEntry ent = zis.getNextEntry ();
|
||||
|
@ -172,7 +174,8 @@ public abstract class JarURLConnection extends URLConnection
|
|||
|
||||
if (jarfile == null)
|
||||
{
|
||||
JarInputStream zis = new JarInputStream(jarFileURLConnection.getInputStream ());
|
||||
JarInputStream zis = new JarInputStream(
|
||||
jarFileURLConnection.getInputStream ());
|
||||
|
||||
// This is hideous, we're doing a linear search for the thing...
|
||||
for (ZipEntry ent = zis.getNextEntry ();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue