Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove explicit extends object #469

Merged
merged 1 commit into from
Sep 21, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/java/com/microsoft/sqlserver/jdbc/IOBuffer.java
Original file line number Diff line number Diff line change
Expand Up @@ -1340,7 +1340,7 @@ public void setOOBInline(boolean on) throws SocketException {
* A PermissiveX509TrustManager is used to "verify" the authenticity of the server when the trustServerCertificate connection property is set to
* true.
*/
private final class PermissiveX509TrustManager extends Object implements X509TrustManager {
private final class PermissiveX509TrustManager implements X509TrustManager {
private final TDSChannel tdsChannel;
private final Logger logger;
private final String logContext;
Expand Down Expand Up @@ -1373,7 +1373,7 @@ public X509Certificate[] getAcceptedIssuers() {
*
* This validates the subject name in the certificate with the host name
*/
private final class HostNameOverrideX509TrustManager extends Object implements X509TrustManager {
private final class HostNameOverrideX509TrustManager implements X509TrustManager {
private final Logger logger;
private final String logContext;
private final X509TrustManager defaultTrustManager;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/microsoft/sql/DateTimeOffset.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
* The DateTimeOffset class represents a java.sql.Timestamp, including fractional seconds, plus an integer representing the number of minutes offset
* from GMT.
*/
public final class DateTimeOffset extends Object implements java.io.Serializable, java.lang.Comparable<DateTimeOffset> {
public final class DateTimeOffset implements java.io.Serializable, java.lang.Comparable<DateTimeOffset> {
private static final long serialVersionUID = 541973748553014280L;

private final long utcMillis;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/microsoft/sql/Types.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*
* This class is never instantiated.
*/
public final class Types extends Object {
public final class Types {
private Types() {
// not reached
}
Expand Down