Skip to content

Commit 50eb915

Browse files
author
Andrey Turbanov
committedMar 7, 2022
8282632: Cleanup unnecessary calls to Throwable.initCause() in java.security.jgss
Reviewed-by: mullan, rhalade
1 parent ccad392 commit 50eb915

File tree

3 files changed

+9
-22
lines changed

3 files changed

+9
-22
lines changed
 

‎src/java.security.jgss/share/classes/sun/net/www/protocol/http/spnego/NegotiatorImpl.java

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2005, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2005, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -127,9 +127,7 @@ public NegotiatorImpl(HttpCallerInfo hci) throws IOException {
127127
"fallback to other scheme if allowed. Reason:");
128128
e.printStackTrace();
129129
}
130-
IOException ioe = new IOException("Negotiate support not initiated");
131-
ioe.initCause(e);
132-
throw ioe;
130+
throw new IOException("Negotiate support not initiated", e);
133131
}
134132
}
135133

@@ -157,9 +155,7 @@ public byte[] nextToken(byte[] token) throws IOException {
157155
System.out.println("Negotiate support cannot continue. Reason:");
158156
e.printStackTrace();
159157
}
160-
IOException ioe = new IOException("Negotiate support cannot continue");
161-
ioe.initCause(e);
162-
throw ioe;
158+
throw new IOException("Negotiate support cannot continue", e);
163159
}
164160
}
165161
}

‎src/java.security.jgss/share/classes/sun/security/krb5/internal/KRBError.java

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2000, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -234,10 +234,8 @@ private void parseEData(byte[] data) throws IOException {
234234
System.out.println("Unable to parse eData field of KRB-ERROR:\n" +
235235
new sun.security.util.HexDumpEncoder().encodeBuffer(data));
236236
}
237-
IOException ioe = new IOException(
238-
"Unable to parse eData field of KRB-ERROR");
239-
ioe.initCause(e);
240-
throw ioe;
237+
throw new IOException(
238+
"Unable to parse eData field of KRB-ERROR", e);
241239
}
242240
} else {
243241
if (DEBUG) {

‎src/java.security.jgss/share/classes/sun/security/krb5/internal/crypto/dk/ArcFourCrypto.java

+3-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2005, 2008, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2005, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -29,7 +29,6 @@
2929
import javax.crypto.*;
3030
import javax.crypto.spec.*;
3131
import java.util.*;
32-
import sun.security.krb5.EncryptedData;
3332
import sun.security.krb5.KrbCryptoException;
3433
import sun.security.krb5.Confounder;
3534
import sun.security.krb5.internal.crypto.KeyUsage;
@@ -159,10 +158,7 @@ public byte[] calculateChecksum(byte[] baseKey, int usage, byte[] input,
159158
System.arraycopy(ss, 0, new_ss, 0, ss.length);
160159
Ksign = getHmac(baseKey, new_ss);
161160
} catch (Exception e) {
162-
GeneralSecurityException gse =
163-
new GeneralSecurityException("Calculate Checkum Failed!");
164-
gse.initCause(e);
165-
throw gse;
161+
throw new GeneralSecurityException("Calculate Checksum Failed!", e);
166162
}
167163

168164
// get the salt using key usage
@@ -173,10 +169,7 @@ public byte[] calculateChecksum(byte[] baseKey, int usage, byte[] input,
173169
try {
174170
messageDigest = MessageDigest.getInstance("MD5");
175171
} catch (NoSuchAlgorithmException e) {
176-
GeneralSecurityException gse =
177-
new GeneralSecurityException("Calculate Checkum Failed!");
178-
gse.initCause(e);
179-
throw gse;
172+
throw new GeneralSecurityException("Calculate Checksum Failed!", e);
180173
}
181174
messageDigest.update(salt);
182175
messageDigest.update(input, start, len);

0 commit comments

Comments
 (0)
Please sign in to comment.