Skip to content

Commit

Permalink
Merge pull request #471 from JamieMagee/unnecessary-return
Browse files Browse the repository at this point in the history
Remove unnecessary return statements
  • Loading branch information
cheenamalhotra committed Sep 21, 2017
2 parents f56f198 + 4badd3c commit 377f77a
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
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 @@ -49,6 +49,5 @@ void applyTo(Column[] columns,
}

tdsReader.reset(currentMark);
return;
}
}

0 comments on commit 377f77a

Please sign in to comment.