mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 07:14:30 +02:00
8234335: Remove line break in class declaration in java.base
Remove line break in class declarations where applicable Reviewed-by: rriggs, lancea
This commit is contained in:
parent
e636c69e61
commit
a8a2246158
103 changed files with 416 additions and 460 deletions
|
@ -35,8 +35,7 @@ import java.security.cert.Certificate;
|
|||
*
|
||||
* @since 1.2
|
||||
*/
|
||||
public
|
||||
class JarEntry extends ZipEntry {
|
||||
public class JarEntry extends ZipEntry {
|
||||
Attributes attr;
|
||||
Certificate[] certs;
|
||||
CodeSigner[] signers;
|
||||
|
|
|
@ -32,8 +32,7 @@ package java.util.jar;
|
|||
* @author David Connelly
|
||||
* @since 1.2
|
||||
*/
|
||||
public
|
||||
class JarException extends java.util.zip.ZipException {
|
||||
public class JarException extends java.util.zip.ZipException {
|
||||
@java.io.Serial
|
||||
private static final long serialVersionUID = 7159778400963954473L;
|
||||
|
||||
|
|
|
@ -145,8 +145,7 @@ import java.util.zip.ZipFile;
|
|||
* @see java.util.jar.JarEntry
|
||||
* @since 1.2
|
||||
*/
|
||||
public
|
||||
class JarFile extends ZipFile {
|
||||
public class JarFile extends ZipFile {
|
||||
private final static Runtime.Version BASE_VERSION;
|
||||
private final static int BASE_VERSION_FEATURE;
|
||||
private final static Runtime.Version RUNTIME_VERSION;
|
||||
|
|
|
@ -42,8 +42,7 @@ import jdk.internal.util.jar.JarIndex;
|
|||
* @see java.util.zip.ZipInputStream
|
||||
* @since 1.2
|
||||
*/
|
||||
public
|
||||
class JarInputStream extends ZipInputStream {
|
||||
public class JarInputStream extends ZipInputStream {
|
||||
private Manifest man;
|
||||
private JarEntry first;
|
||||
private JarVerifier jv;
|
||||
|
|
|
@ -41,8 +41,7 @@ import java.io.*;
|
|||
* @see java.util.zip.ZipOutputStream
|
||||
* @since 1.2
|
||||
*/
|
||||
public
|
||||
class JarOutputStream extends ZipOutputStream {
|
||||
public class JarOutputStream extends ZipOutputStream {
|
||||
private static final int JAR_MAGIC = 0xCAFE;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue