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 unnecessary return statements #471

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
1 change: 0 additions & 1 deletion src/main/java/com/microsoft/sqlserver/jdbc/DDC.java
Original file line number Diff line number Diff line change
Expand Up @@ -1338,7 +1338,6 @@ public void mark(int readLimit) {
catch (IOException e) {
// unfortunately inputstream mark does not throw an exception so we have to eat any exception from the reader here
// likely to be a bug in the original InputStream spec.
return;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,6 @@ static void decryptSymmetricKey(CryptoMetadata md,
assert null != cipherAlgorithm : "Cipher algorithm cannot be null in DecryptSymmetricKey";
md.cipherAlgorithm = cipherAlgorithm;
md.encryptionKeyInfo = encryptionkeyInfoChosen;
return;
}

/*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,5 @@ void applyTo(Column[] columns,
}

tdsReader.reset(currentMark);
return;
}
}